30-05-2007, 09:37 PM
Bah écoute pour moi, sans le onclick="submit" ton formulaire doit fonctionner correctement.
Tu gagnerais en lisibilité à sortir ton code HTML de ton code PHP :
DeviendraTu gagnerais en lisibilité à sortir ton code HTML de ton code PHP :
Code PHP :
<?php
...
echo'<form action="attaquemonstre.php" method="post">
<input type= "hidden" name="idmonstre" value="'.$data['id'].'" />
<input onmouseover="montre(3);" onmouseout="cache(3);" type= "image" border=1 src="image/attaque.gif" name="attaquermonstre" value="Attaque" /></form>';
...
?>
Code PHP :
<?php
...
?>
<form action="attaquemonstre.php" method="post">
<input type= "hidden" name="idmonstre" value="<?php echo $data['id'] ?>" />
<input onmouseover="montre(3);" onmouseout="cache(3);" type= "image" border=1 src="image/attaque.gif" name="attaquermonstre" value="Attaque" /></form>'
<?php
...
?>