Bonjour a tous

Je suis déja venu il y a qq temps pratiquement pour la même raison, et je dois bien dire que je tourne en rond avec mon script...
J'ai deux "form" dans la même page, et au final, je n'arrive pas a recuperer les variables generées par les boutons radio.
je vous mets ici le script ca sera surement plus parlant...



<form name=menu_gauche method="post">

    <table width="20%" valign="up" border="0" cellspacing="0" cellpadding="0">
      <tr>
        <td width="50%" align="center"><img src="symb/18ans.jpg" width="55" height="55" id="img1"></td>
		<td width="50%" align="center"><img id="img2" src="symb/coeur1.gif" width="50"></td>
      </tr>
      <tr>
        <td align="center"><input type="radio" name="photos" value="item1" id="photos">Item-1<br></td>
        <td align="center"><input type="radio" name="photos" value="item2" id="photos">Item-2<br></td>
      </tr>
      <tr>
        <td width="50%" align="center"><img src="symb/lui.gif" width="50" height="50"></td>
        <td width="50%" align="center"><img src="symb/elle.gif" width="50" height="50"></td>
      </tr>
      <tr>
        <td align="center"><input type="radio" name="photos" value="item3">Item-3<br></td>
        <td align="center"><input type="radio" name="photos" value="item4">Item-4<br></td>
	  </tr></table>
	  <br>
      <td width="50"> 
        <input type="button" name="but" value="Affichez une image" onclick="choix(menu_gauche)" style="background-color:yellow">
      </form></td>
	  </td></table>
	
	  <div class="truc1"><img src="<?php echo $url;?>" border="1"></div>
	  <div align="center" class="truc2" id="photo" ></div> 

	<?php if(isset($_POST['photos'])) $photo=$_POST['photos']; else $photo=""; ?>
    
     <div class="Style2">Confirmez ici le modèle de l'image choisie</div>
 
    <form method="post" name="choixitem" action="enregistrement_2.php"  >

    <div class="truc5">
      <input type="submit" name="submit" value="Commander" class="boutique_bouton"></div> 
<input type="hidden" value="<?php echo $mod; ?>" name="mod" id="mod">
<input type="hidden" value="<?php echo $photo; ?>" name="photos"> 
</form>


Les images s'affichent bien dans le "div class="truc2"" mais a priori ca ne va pas plus loin que ca....
J'ai a peu pres tout essayé, mais pas la bonne solution ....
Si vous avez une piste ca m'aiderait pas mal...
Merci a vous de passer voir mon post.
Salut bernard26000 Smiley cligne ,

à priori tu devrais récupérer la valeur à l'aide de $_POST['photos'].

Cela dit la méthode employée pour soumettre ton premier formulaire est inaccessible sans javascript Smiley rolleyes . Ce serait mieux d'utiliser un simple input type="submit" et de déclencher un éventuel script javascript sur le onsubmit en sachant qu'il pourrait ne pas être lancé si javascript est désactivé.

A+ Smiley smile