Bonjour à tous,
J'ai un code créé en PHP qui me donne le code source réindenté suivant:
Code html : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<table class="usersTable">
	<tr>
		<th>Code</th><th>Modifier</th><th>Supprimer</th>
	</tr>
	<tr>
		<td>BureauMP</td>
		<td><a href='editUser.php?user=4><img src='images/edit.png'></a></td>
		<td><a href='?wxc=4><img src='images/del.png'></a></td>
	</tr>
	<tr>
		<td>BureauMP1</td>
		<td><a href='editUser.php?user=5><img src='images/edit.png'></a></td>
		<td><a href='?wxc=5><img src='images/del.png'></a></td>
	</tr>
</table>
<img src='images/edit.png'><br> <!-- pour contrôle: s'affiche correctement. -->
Pourquoi ?