Bonjour,je suis bloqué sur un codage en local,pourriez vous m'aider ?
<body>
<table border="2" cellpadding="5" cellspacing="0">
<tr>
<!--en tête-->
<th>Titre</th>
<th>Date de sortie</th>
<th>Genre</th>
<th>Support</th>
<th>Prix</th>
</tr>
<?php
while($enregistrement=mysql_fetch_array($jeu) ){
//recuperation du champ "Titre"
$Titre=$enregistrement->Titre;
//recuperation du champ "Date de sortie"
$Date_de_sortie=$enregistrement->Date_de_sortie;
//recuperation du champ "Genre"
$Genre=$enregistrement->Genre;
//recuperation du champ "Support"
$Support=$enregistrement->Support;
//recuperation du champ "Prix"
$Prix=$enregistrement->Prix;
?>
<tr>
<!--affichage des champs-->
<td><?php echo $Titre ?></td>
<td align="center"><?php echo $Date_de_sortie ?></td>
<td><?php echo $Genre ?></td>
<td><?php echo $Support ?></td>
<td><?php echo $Prix ?></td>
</tr>
<?php
}
?>
</table>
</body>
Merci !