Advertisement
Guest User

Untitled

a guest
Sep 24th, 2017
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.35 KB | None | 0 0
  1. <?php if ( count($this->errors['name']) > 0) :?>
  2.             <h3>Name</h3>
  3.             <ul>
  4.                 <?php if($this->errors['name'][0] == "isEmpty"):?>
  5.                 <li>Darf nicht leer sein.</li>
  6.                 <?php endif;?>
  7.                
  8.                 <?php if($this->errors['name'][0] == "notAlnum"):?>
  9.                 <li>Es dürfen keine Sonderzeichen enthalten sein.</li>
  10.                 <?php endif;?>
  11.             </ul>
  12.             <?php endif;?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement