Advertisement
cafreak

Humanoids shall not trespass!

Oct 3rd, 2015
154
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.29 KB | None | 0 0
  1. $curDate = date('Y-m-d', time());
  2. $curDate = explode('-', $curDate);
  3.            
  4. //validate if the humanoid is build yet
  5. if(($dobA[0] > $curDate[0]) && ($dobA[1] > $curDate[1]) && ($dobA[2] > $curDate[2])){
  6.     $errors['DoB Error']['#3'] = 'We currently do not accept humans that aren\'t born yet!';
  7. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement