Insérer image tableau PHP

Nouveau WRInaute
Bonjour,
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.
 
WRInaute passionné
Tu remplace tous les <td></td> par :
Code:
echo "<td><img src='http://www.ton image....png' width="125px" height="60" alt='le alt' /></td>"
Ou est le problème?
 
WRInaute accro
Ca serait pas plutôt
Code:
echo "<td><img src='http://www.ton image....png' width=\"125px\" height=\"60\" alt='le alt' /></td>";

... les petits caractères de contrôle supplémentaires ...
 
WRInaute accro
Et c'est bcp plus simple/propre de n'utiliser PHP que là où il est nécessaire:
PHP:
<span class="syntaxhtml"><br /><tr><br />&nbsp;&nbsp;&nbsp;&nbsp;<td><span class="syntaxdefault"><?php&nbsp;</span><span class="syntaxkeyword">echo&nbsp;</span><span class="syntaxdefault">$row</span><span class="syntaxkeyword">[</span><span class="syntaxstring">'nom'</span><span class="syntaxkeyword">];</span><span class="syntaxdefault">?></span></td><br /></span>

Au lieu de concaténer:
PHP:
<span class="syntaxdefault"><br /></span><span class="syntaxkeyword">echo&nbsp;</span><span class="syntaxstring">'<tr>'</span><span class="syntaxkeyword">;<br />echo&nbsp;</span><span class="syntaxstring">'<td>'</span><span class="syntaxkeyword">.</span><span class="syntaxdefault">$row</span><span class="syntaxkeyword">[</span><span class="syntaxstring">'nom'</span><span class="syntaxkeyword">].</span><span class="syntaxstring">'</td>'</span><span class="syntaxkeyword">;<br />&nbsp;</span><span class="syntaxdefault"></span>
 
Discussions similaires
Haut