Parse error: syntax error, unexpected 'echo' (T_ECHO) in C:\xampp\htdocs\delos\materialvisitas.php on line 190
Código
<?php ?> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <?php $result=$conexio->query("SELECT * FROM materialvisitas ORDER BY fecha DESC"); ?> <table class="table table-condensed table-hover table-bordered table-striped text-justify"> <tr><td colspan="5"><strong> Material Ordenado Por Fecha (Working Progress)</strong></td></tr> <tr> <td><div class="sizef"><strong> Fecha Material</strong></div></td> <td><strong> Archivo </strong></td> <td><strong> Nombre </strong></td> <td><strong> Nombre Largo</strong></td> <td><strong> Descripción y observaciones</strong></td> </tr> <?php while ($row=$result->fetch_array(MYSQLI_ASSOC){ echo "</tr>"; echo "<td>$row[1]</td>"; echo "<td>$row[2]</td>"; echo "<td><a href=$row[5]>Descargar Fichero</a></td>"; echo "<td>$row[2]</td>"; echo "<td>$row[3]</td>"; //echo "<td >$row[4]</td>"; echo "</tr>"; $result->free; } else { } ?> </table> </div> </div>
Mod: Temas sobre PHP van al subforo de PHP.