Advertisement
Guest User

Untitled

a guest
Jul 27th, 2017
46
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.64 KB | None | 0 0
  1. if(isset($_POST['nom']) && empty($_POST['nom'])) {
  2.  
  3. echo "<script>
  4.  
  5.  
  6. window.onload = function() {
  7.  
  8. alert('Vous devez entrer un nom !');
  9.  
  10. }
  11.  
  12.  
  13.  
  14.  
  15. </script>
  16. ";
  17. }
  18.  
  19.  
  20.  
  21. if(isset($_POST['mail']) && empty($_POST['mail'])) {
  22.  
  23. echo "
  24. <script>
  25.  
  26.  
  27. window.onload = function(){
  28.  
  29. alert('Vous devez entrer un mail !')
  30. }
  31.  
  32. </script>
  33.  
  34. ";
  35. }
  36.  
  37.  
  38. if(isset($_POST['message']) && empty($_POST['message'])) {
  39.  
  40. echo "
  41.  
  42. <script>
  43.  
  44. window.onload = function(){
  45.  
  46. alert('Vous devez entrer un message !')
  47. }
  48. </script>
  49.  
  50. ";
  51. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement