Advertisement
Guest User

Untitled

a guest
Jul 30th, 2015
198
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.82 KB | None | 0 0
  1. <?php
  2.  
  3.  
  4. if(isset($_POST['pseudo'])) { $pseudo = $_POST['pseudo']; }
  5. if(isset($_POST['pass'])) { $pass = $_POST['pass']; }
  6. if(isset($_POST['taillepizza'])) { $taille = $_POST['taillepizza']; }
  7. if(isset($_POST['ingredients'])) { $ingredient = $_POST['ingredients']; }
  8. if(isset($_POST['typepaiement'])) { $moypaiement = $_POST['typepaiement']; }
  9. if(isset($_POST['styleclient'])) { $style = $_POST['styleclient']; }
  10. if(isset($_POST['commentaireclient'])) { $commentaire = $_POST['commentaireclient']; }
  11.  
  12.  
  13. echo "<pre>";
  14. print_r($_POST);
  15. echo "</pre>";
  16.  
  17. echo $pseudo . "<br />";
  18. echo $pass . "<br />";
  19. echo $taille . "<br />";
  20. foreach ($ingredient as $topping) {
  21. echo $topping . "<br />";
  22. }
  23. echo $moypaiement . "<br />";
  24. foreach ($style as $styling) {
  25. echo $styling . "<br />";
  26. }
  27.  
  28. echo $commentaire . "<br />";
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement