Advertisement
Guest User

Untitled

a guest
Jul 23rd, 2014
204
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.52 KB | None | 0 0
  1.     if(!$name) {
  2.             $error['yourname'] = "<p>Please specify your Company Name.</p>\n";
  3.         }
  4.         if(!$street) {
  5.             $error['address'] = "<p>Please specify your address.</p>\n";
  6.         }
  7.         if(!$city) {
  8.             $error['city'] = "<p>Please specify your City.</p>\n";
  9.         }
  10.  
  11.         //No errors, process
  12.  
  13.         if(!is_array($error)) {
  14.    
  15.        
  16.         echo "<p>Thank you for your submission.</p>\n";
  17.  
  18.         //Require or include any page footer you might have
  19.         //here as well so the style of your page isn't broken.
  20.         //Then exit the script.
  21.         exit;
  22.     }
  23.  
  24.        
  25.  
  26. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement