Nouveau WRInaute
Bonjour,
je souhaite insérer une image qui apparaitra dans chaque ligne de mon tableau php.
Genre à la place echo"<td>".$row['image'].'</td>'; afficher la meme image partout sur mon tableau sans que cette image soit dans la BDD
Merci pour votre aide.
je souhaite insérer une image qui apparaitra dans chaque ligne de mon tableau php.
Code:
while ($row = mysql_fetch_assoc($query)) {
echo"<tr>";
echo"<td>".$row['nom'].'</td>';
echo"<td>".$row['prenom'].'</td>';
echo"<td>".$row['image'].'</td>';
echo"<td>".$row['age'].'</td>';
echo"<td>".$row['sexe'].'</td>';
echo"<td>".$row['ville'].'</td>';
echo"<td>".$row['rue'].'</td>';
echo "<td><a href='#’' onclick=\"ConfirmDelete('info.php?action=delete&id=".$row['id']."'); return false;\">supprimer</a></td>";
echo "<td><a href='#’' onclick=\"ConfirmModif('modifierinfo.php?id=".$row['id']."'); return false;\">modifier</a></td>";
echo"</tr>";
Genre à la place echo"<td>".$row['image'].'</td>'; afficher la meme image partout sur mon tableau sans que cette image soit dans la BDD
Merci pour votre aide.