Heim > Backend-Entwicklung > PHP-Tutorial > PHP jQuery表单,带验证具体实现方法_PHP

PHP jQuery表单,带验证具体实现方法_PHP

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
Freigeben: 2016-06-01 11:55:53
Original
1170 Leute haben es durchsucht

jQuery

 Email检测,密码重复检测,可以用于表单发送的各种环境,例如发送反馈,注册帐号

PHP jQuery表单,带验证具体实现方法_PHP

复制代码 代码如下:

 
         
               
 
                   
     
                             
                               
  • Invalid Name: We want names with more than 3 letters!
  •  
                             
                             
                               
  • Invalid E-mail: Stop cowboy! Type a valid e-mail please :P
  •  
                             
                             
                               
  • Passwords are invalid: Passwords doesn't match or are invalid!
  •  
                             
                             
                               
  • Ivalid message: Type a message with at least with 10 letters
  •  
                             
                       
 
               
 
             
               
 
                   
     
                           
  • Congratulations! All fields are OK ;)
  •  
                       
 
               
 
         

       
 
           
 
                 
                 
                What's your name? 
           
 
           
 
                 
                 
                Valid E-mail please, you will need it to log in! 
           
 
           
 
                 
                 
                At least 5 characters: letters, numbers and '_' 
           
 
           
 
                 
                 
                Confirm password 
           
 
           
 
                 
                 
           
 
           
 
                 
           
 
       
 
   
 

validation.php

复制代码 代码如下:
    function validateName($name){ 
        //if it's NOT valid 
        if(strlen($name)             return false; 
        //if it's valid 
        else 
            return true; 
    } 
    function validateEmail($email){ 
        return ereg("^[a-zA-Z0-9]+[a-zA-Z0-9_-]+@[a-zA-Z0-9]+[a-zA-Z0-9.-]+[a-zA-Z0-9]+.[a-z]{2,4}$", $email); 
    } 
    function validatePasswords($pass1, $pass2) { 
        //if DOESN'T MATCH 
        if(strpos($pass1, ' ') !== false)
            return false;
        //if are valid
        return $pass1 == $pass2 && strlen($pass1) > 5;
    }
    function validateMessage($message){
        //if it's NOT valid 
        if(strlen($message)             return false; 
        //if it's valid 
        else 
            return true; 
    } 
?> 

Verwandte Etiketten:
Quelle:php.cn
Erklärung dieser Website
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn
Aktuelle Ausgaben
PHP-Datenerfassung?
Aus 1970-01-01 08:00:00
0
0
0
PHP-Erweiterung intl
Aus 1970-01-01 08:00:00
0
0
0
Wie man PHP gut lernt
Aus 1970-01-01 08:00:00
0
0
0
Mehrere PHP-Versionen
Aus 1970-01-01 08:00:00
0
0
0
Beliebte Tutorials
Mehr>
Neueste Downloads
Mehr>
Web-Effekte
Quellcode der Website
Website-Materialien
Frontend-Vorlage