Bonjour à tous,

J'ai développé une page ajout.html:

Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
 
<body>
 
<form action="ajout.php" method="get">
<table>
<tr>
	<td>Nom: </td><td><input type="text" name="etdnom" /></td>
</tr>
<tr>
	<td colspan="2"><input type="submit" value="Add" /></td>
</tr>
</table>
</form>
</body>
et la page ajout.php

Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
<html>
<body>
<?
 
	echo ("<p>Page Add<p>");
 
?>
</body>
</html>
Le problème c'est que je reçois un affichage
C'est quoi le problème?

Merci