Advertisement
Guest User

Untitled

a guest
Aug 28th, 2016
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. <?php
  2. if(isset($_POST['liste1']))
  3. {
  4. //si la liste a été "postée" c ad choix fait
  5. $liste1=$_POST['liste1'];
  6. }
  7. else
  8. {
  9. $liste1=-1;
  10. }
  11.  
  12. ?>
  13. <form name="form1" method="post" action="test2.php">
  14. <select name="liste1" onchange="this.form.submit()">
  15. <Option>choisir</Option>
  16. <Option>choisir2</Option>
  17. <Option>choisir3</Option>
  18.  
  19.  
  20. <?php
  21. if($liste1== $_POST['liste1']) print 'selected="selected"';
  22. ?>
  23.  
  24. </select>
  25.  
  26. </form
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement