Home Backend Development PHP Tutorial Detailed registration and judgment of users_PHP tutorial

Detailed registration and judgment of users_PHP tutorial

Jul 21, 2016 pm 04:06 PM
header include judgment and document have register use user of detailed

有三个文件:
第一是:zcyh.php(注册用户名)



      
      
    
  
当前位置:主页>>注册页面



  
      
      
    
  
  
        请设定用户名:(3-15位

  

    
        
        
        
      
        
        
      
        
        
      
        
        
      
        
        
      
        
        
      
        
        
      
    
  
          
用户名:
        
  
          
        
  
          
注意:用户名只能由英文字母(a-z),数字(0-9)和下划线('_'、'-'、'.'  
            )构成,不能有空格,且必须以英文字母为开头。

        
  
          
例如:

        
  
          
正确的例子:jocky、lin_xing、nh2001

        
  
          
×错误的例子:li  
            kitty、ming:)、168kk

        
  
          
如果你已经填写好,请点“下一步”按钮;  
            点“
取消”按钮即取消您刚才的输入,重新开始。  
            

        
  
          
  

            
           >
             

        

  










The second one is :register.php (determine whether the registered user name is correct and repeated, and then output the detailed registration form)



a href="index.php">Homepage>>Registration page>>Details


Username cannot be empty. Pleasereturn

";
include("foot.inc.php");
exit();
}
if(strlen($name)<3 || strlen($name)>15){
echo"
The length of the username does not meet the requirements.请返回

";
  include("foot.inc.php");
    exit();
}
if (!eregi("^[_a-z0-9-]+(\.[_a-z0-9-]+)*$", $name)) {
       echo"
注册名只能由字母数字组成.请返回

";
      include("foot.inc.php");
    exit();
    }
if ($name)
    {     
        $conn=@mysql_connect("localhost");
        $sql=@mysql_select_db("jocky",$conn);
        $result=@mysql_query("select * from user1 where name='$name'" ,$conn);
        if($result){
             if(@mysql_fetch_object($result)){
                 echo"
对不起,已经有相同的用户名!请返回.

";}
                 else{$conn=@mysql_connect("localhost");
                      $sql=@mysql_select_db("jocky",$conn);
                      $sqldo="insert into user1 (name) values ('$name')";
                     @mysql_query($sqldo,$conn);
                 echo"
你好,";
                 echo"$name
";
                 include("zhuce.php");
                 @mysql_close($conn);}
                include("foot.inc.php");
                 exit();
             }
        }
    ?>
    




The third one is: check.php (determine registration Is the data correct, then insert it into the database and log in again)






Current location: Home page >>Registration page>>Details


if($truename==""){
echo"
The real name cannot be empty. Pleasereturn

";
include ("foot.inc.php");
exit();
}
if($password==""||$repassword==""){
echo"Password cannot be empty. Pleasereturn";
include("foot.inc.php");
exit();
}
if($repassword!=$password){
echo"
The passwords entered twice are different. Pleasereturn

";
include("foot.inc. php");
exit();
}
if(strlen($password)<6 || strlen($password)>15){
echo"
< ;center>The password length does not meet the requirements. Pleasereturn
";
include("foot.inc. php");
exit();
}
if($pwwhat==""){
echo"
Password prompt Question cannot be empty. Pleasereturn

";
include("foot.inc. php");
exit();
}
if($pwan==""){
echo"
Password prompt The answer cannot be empty. Pleasereturn

";
include("foot.inc. php");
exit();
}
if($personalid==""){
echo"
ID card Number cannot be empty. Pleasereturn

";
include("foot.inc. php");
exit();
}
if(strlen($personalid)!=15 or strlen($personalid)!=18){
echo"
< center>The entered ID number is not 15 or 18 digits. Pleasereturn
";
include("foot.inc. php");
exit();
}*/
if($year=="" || $month=="" || $day==""){
echo "
The date of birth is not filled in.Pleasereturn

";
include("foot.inc. php");
exit();
}
if(strlen($year)!=4 || strlen($month)!=2 || strlen($day)!=2){
echo"
The entered year, month and day is incorrect. Pleasereturn

";
include("foot.inc. php");
exit();
}
if (!eregi("^[_.0-9a-z-]+@([0-9a-z][0-9a- z-]+.)+[a-z]{2,3}$",$email)) {
echo"
The E-Mail address format is incorrect. Pleasereturn

";
include("foot.inc. php");
exit();
}
if($tel==""){
echo"
Contact Phone cannot be empty. Pleasereturn

";
include("foot.inc. php");
exit();
}
if(strlen($tel)!=11 || strlen($tel)!=12 || strlen($tel)!=13){
echo"
The length of the contact number is incorrect. Pleasereturn

";
include("foot.inc. php");
exit();
}
if($gender==""){
$null1="empty";}
if($xueli=="" ){
$null2="null";}
if($money==""){
$null3="null";}
if($addr==""){
$null4="empty";}
$birthday="$year.-.$month.-.$day";
$time=time();
$conn=@mysql_connect ("localhost");
$sql=@mysql_select_db("jocky",$conn);
$result=@mysql_query("select * from user1 where name='$name'",$conn);
$sqldo="insert into user1 (name,truename,password,pwwhat,pwan,personalid,gender,xueli,birth,email,tel,money,addr,time) values('$name','$truename' ,'$password','$pwwhat','$pwan','$personalid','$null1','$null2',";
        $sqldo.="'$birthday','$email' ,'$tel','$null3','$null4','$time')";
$query=@mysql_query($sqldo,$conn);
if($query){
echo"
Congratulations, you have successfully registered! Pleaselog in
";
exit();
else{
echo"
The server is busy and cannot register for you, please Sign up later! Back to homepage

"; >








http://www.bkjia.com/PHPjc/315509.html

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/315509.htmlTechArticle has three files: The first is: zcyh.php (registered user name)?include(header1.inc.php )? div align=center table width=89% border=0 tr tdfont color=#ff0000Current location: a href=index.php main...
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Repo: How To Revive Teammates
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
4 weeks ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

How to use Xiaohongshu account to find users? Can I find my mobile phone number? How to use Xiaohongshu account to find users? Can I find my mobile phone number? Mar 22, 2024 am 08:40 AM

With the rapid development of social media, Xiaohongshu has become one of the most popular social platforms. Users can create a Xiaohongshu account to show their personal identity and communicate and interact with other users. If you need to find a user’s Xiaohongshu number, you can follow these simple steps. 1. How to use Xiaohongshu account to find users? 1. Open the Xiaohongshu APP, click the &quot;Discover&quot; button in the lower right corner, and then select the &quot;Notes&quot; option. 2. In the note list, find the note posted by the user you want to find. Click to enter the note details page. 3. On the note details page, click the &quot;Follow&quot; button below the user's avatar to enter the user's personal homepage. 4. In the upper right corner of the user's personal homepage, click the three-dot button and select &quot;Personal Information&quot;

How to register multiple accounts on Xiaohongshu? Will I be discovered if I register multiple accounts? How to register multiple accounts on Xiaohongshu? Will I be discovered if I register multiple accounts? Mar 25, 2024 am 09:41 AM

As a platform integrating social networking and e-commerce, Xiaohongshu has attracted more and more users to join. Some users hope to register multiple accounts to better experience interacting with Xiaohongshu. So, how to register multiple accounts on Xiaohongshu? 1. How to register multiple accounts on Xiaohongshu? 1. Use different mobile phone numbers to register. Currently, Xiaohongshu mainly uses mobile phone numbers to register accounts. Users sometimes try to purchase multiple mobile phone number cards and use them to register multiple Xiaohongshu accounts. However, this approach has some limitations, because purchasing multiple mobile phone number cards is cumbersome and costly. 2. Use email to register. In addition to your mobile phone number, your email can also be used to register a Xiaohongshu account. Users can prepare multiple email addresses and then use these email addresses to register accounts. but

How to register a Xiaohongshu account? What is required to register a Xiaohongshu account? How to register a Xiaohongshu account? What is required to register a Xiaohongshu account? Mar 22, 2024 am 10:16 AM

Xiaohongshu, a social platform integrating life, entertainment, shopping and sharing, has become an indispensable part of the daily life of many young people. So, how to register a Xiaohongshu account? 1. How to register a Xiaohongshu account? 1. Open the Xiaohongshu official website or download the Xiaohongshu APP. Click the &quot;Register&quot; button below and you can choose different registration methods. Currently, Xiaohongshu supports registration with mobile phone numbers, email addresses, and third-party accounts (such as WeChat, QQ, Weibo, etc.). 3. Fill in the relevant information. According to the selected registration method, fill in the corresponding mobile phone number, email address or third-party account information. 4. Set a password. Set a strong password to keep your account secure. 5. Complete the verification. Follow the prompts to complete mobile phone verification or email verification. 6. Perfect the individual

Log in to Ubuntu as superuser Log in to Ubuntu as superuser Mar 20, 2024 am 10:55 AM

In Ubuntu systems, the root user is usually disabled. To activate the root user, you can use the passwd command to set a password and then use the su- command to log in as root. The root user is a user with unrestricted system administrative rights. He has permissions to access and modify files, user management, software installation and removal, and system configuration changes. There are obvious differences between the root user and ordinary users. The root user has the highest authority and broader control rights in the system. The root user can execute important system commands and edit system files, which ordinary users cannot do. In this guide, I'll explore the Ubuntu root user, how to log in as root, and how it differs from a normal user. Notice

How to register a Xiaohongshu account? How to recover if its account is abnormal? How to register a Xiaohongshu account? How to recover if its account is abnormal? Mar 21, 2024 pm 04:57 PM

As one of the most popular lifestyle sharing platforms in the world, Xiaohongshu has attracted a large number of users. So, how to register a Xiaohongshu account? This article will introduce you to the Xiaohongshu account registration process in detail, and answer the question of how to recover Xiaohongshu account abnormalities. 1. How to register a Xiaohongshu account? 1. Download the Xiaohongshu APP: Search and download the Xiaohongshu APP in the mobile app store, and open it after the installation is complete. 2. Register an account: After opening the Xiaohongshu APP, click the &quot;Me&quot; button in the lower right corner of the homepage, and then select &quot;Register&quot;. 3. Fill in the registration information: Fill in the mobile phone number, set password, verification code and other registration information according to the prompts. 4. Complete personal information: After successful registration, follow the prompts to complete personal information, such as name, gender, birthday, etc. 5. Settings

How to transfer files from Quark Cloud Disk to Baidu Cloud Disk? How to transfer files from Quark Cloud Disk to Baidu Cloud Disk? Mar 14, 2024 pm 02:07 PM

Quark Netdisk and Baidu Netdisk are currently the most commonly used Netdisk software for storing files. If you want to save the files in Quark Netdisk to Baidu Netdisk, how do you do it? In this issue, the editor has compiled the tutorial steps for transferring files from Quark Network Disk computer to Baidu Network Disk. Let’s take a look at how to operate it. How to save Quark network disk files to Baidu network disk? To transfer files from Quark Network Disk to Baidu Network Disk, you first need to download the required files from Quark Network Disk, then select the target folder in the Baidu Network Disk client and open it. Then, drag and drop the files downloaded from Quark Cloud Disk into the folder opened by the Baidu Cloud Disk client, or use the upload function to add the files to Baidu Cloud Disk. Make sure to check whether the file was successfully transferred in Baidu Cloud Disk after the upload is completed. That's it

What to do if the 0x80004005 error code appears. The editor will teach you how to solve the 0x80004005 error code. What to do if the 0x80004005 error code appears. The editor will teach you how to solve the 0x80004005 error code. Mar 21, 2024 pm 09:17 PM

When deleting or decompressing a folder on your computer, sometimes a prompt dialog box &quot;Error 0x80004005: Unspecified Error&quot; will pop up. How should you solve this situation? There are actually many reasons why the error code 0x80004005 is prompted, but most of them are caused by viruses. We can re-register the dll to solve the problem. Below, the editor will explain to you the experience of handling the 0x80004005 error code. Some users are prompted with error code 0X80004005 when using their computers. The 0x80004005 error is mainly caused by the computer not correctly registering certain dynamic link library files, or by a firewall that does not allow HTTPS connections between the computer and the Internet. So how about

How to register a qooapp account How to register a qooapp account Mar 19, 2024 pm 08:58 PM

qooapp is a software that can download many games, so how to register an account? Users need to click the &quot;Register&quot; button if they don't have a pass yet, and then choose a registration method. This account registration method introduction is enough to tell you how to operate it. The following is a detailed introduction, so take a look. How to register a qooapp account? Answer: Click to register, and then choose a registration method. Specific methods: 1. After entering the login interface, click below. Don’t have a pass yet? Apply now. 2. Then choose the login method you need. 3. You can use it directly after that. Official website registration: 1. Open the website https://apps.ppaooq.com/ and click on the upper right corner to register. 2. Select registration

See all articles