Guest User

Untitled

a guest
Dec 18th, 2017
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. <select name="cars">
  2. <option value="">empty</option> <-- add this line
  3. <option value="Volvo">Volvo</option>
  4.  
  5. if (!empty($_POST['nom']) AND !empty($_POST['email']) AND !empty($_POST['cars']) AND !empty($_POST['km']))
  6.  
  7. if (empty($_POST['nom']))
  8. {
  9. $_POST['nom'] = $null;
  10. }
  11. if (empty($_POST['email']))
  12. {
  13. $_POST['email'] = $null;
  14. }
  15. if (empty($_POST['cars']))
  16. {
  17. $_POST['cars'] = $null;
  18. }
  19. if (empty($_POST['km']))
  20. {
  21. $_POST['km'] = $null;
  22. }
Add Comment
Please, Sign In to add comment