Advertisement
Guest User

Untitled

a guest
Apr 26th, 2018
171
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.19 KB | None | 0 0
  1. <?php
  2. if(isset($_POST['action'])) {
  3.   if(empty($_POST['firstname']) || empty($_POST['lastname']) {
  4.     echo "Please fill firstname and lastname!";
  5.   } else {
  6.     //SQL Abfrage
  7.   }
  8. }
  9. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement