Une bug dans mon code php

Fermé
anis - 28 juin 2011 à 23:16
JooS Messages postés 2468 Date d'inscription mardi 22 janvier 2008 Statut Membre Dernière intervention 8 juin 2016 - 29 juin 2011 à 00:10
Bonjour, je suis désolé j'ai vous donné tout à l'heure un autre code.
voilà le code qui contient le bug:
<table width="500" align="center">
<tr>
<td>Reference</td>
<td>Categorie</td>
<td>Designation</td>
<td>numfs</td>
<td>prixht</td>
<td>tauxtva</td>
<td>qtstock</td>
<td>qteminstock</td>
<td>Action</td>
</tr>

<tr>
<td colspan="9" ></td>
</tr>
<?php
/* requete pour le selection de tous les données d'un client*/
$sql=mysql_query("select * from articles ") or die(mysql_error());
/* on vérifie si on arrive à la fin de tableau */
while($data=mysql_fetch_array($sql))
{
?>
<tr>
<td ><?php echo $data['ref_art'];?></td>
<td><?php echo $data['categorie'];?></td>
<td><?php echo $data['designation'];?></td>
<td ><?php echo $data['numfs'];?></td>
<td ><?php echo $data['prixht'];?></td>
<td ><?php echo $data['tauxtva'];?></td>
<td ><?php echo $data['qtestock'];?></td>
<td ><?php echo $data['qteminstock'];?></td>
<td><a href="../../../../Windows.old/Program Files/EasyPHP-5.3.5.0/www/projet2/consult_articles.php?Ref=<?php echo $data['ref_art'];?>">SUPP</a></td>
</tr>
<?php }
?>
</table>
</body>
</html>
le bug est dans le drenier ligne après </body>
</html>
je pense que il y a une balise non fermé mais je ne sais pas où!!!???
A voir également:

1 réponse

JooS Messages postés 2468 Date d'inscription mardi 22 janvier 2008 Statut Membre Dernière intervention 8 juin 2016 228
29 juin 2011 à 00:10
Salut ...
y aurait il pas du php avant tout ce code ??
0