编写MySQL数据库的用户认证系统实例
这两天受朋友的托付,要我帮他写一个使用MySQL数据库的用户认证系统。我当然不好推脱的,只得耗费了一晚上的休息时间,写了个很简单的PHP程序。由于赶的很仓卒,可能会太简陋了些,而且可能还会有错误和漏洞。 用户认证的原理很简单:首先需要用户在页面上填
这两天受朋友的托付,要我帮他写一个使用MySQL数据库的用户认证系统。我当然不好推脱的,只得耗费了一晚上的休息时间,写了个很简单的PHP程序。由于赶的很仓卒,可能会太简陋了些,而且可能还会有错误和漏洞。
用户认证的原理很简单:首先需要用户在页面上填入用户名和密码,当然没注册的用户需要先注册。然后调用数据库搜索是否有相应的用户。如果有就确认,没有则提醒用户先注册。使用PHP来完成这一切很简单,但需要注意的是如果想在以后的页面中都能确认用户身份,使用PHP3我只能想出使用cookie的方法。要想使用session,就只能等待PHP4正式版的发布了!
第一步是做一个登录的页面,这儿就不多讲了。我只做了个极简单的,大家自己做得漂亮点。
第二步开始登录后的确认程序的设计。
<p>login.php: <br>mysql_connect("localhost","user","password") <br>/*连接数据库,用户名和密码自行修改*/ <br>or die("无法连接数据库,请重试"); </p><p>mysql_select_db("userinfo") <br>or die("无法选择数据库,请重试"); <br>$today=date("Y-m-d H:i:s"); </p><p>$query=" <br>select id <br>from usertbl <br>where name=$name and password=$password <br>/*从数据库中搜索和登录用户相应的资料*/ <br>"; <br>$result=mysql_query($query); <br>$numrows=mysql_num_rows($result); </p><p>if($numrows==0){ <br>/*验证是否能找出相同资料的用户,不能则未注册*/ <br>echo 非法用户<br>; <br>echo 请注册先<br>; <br>echo 重试<br>; <br>} </p><p>else{ <br>$row=mysql_fetch_array($result); <br>$id=$row[0]; <br>$query=" <br>update usertbl <br>set lastlogin=$today <br>where id=$id"; <br>$result=mysql_query($query); <br>SetCookie("usercookie", "欢迎你,$name");<br> /*这里使用了cookie,以方便之后的页面认证。<br>但我未开发完这一块。希望有兴趣的朋友指正*/ <br>echo 登录成功<br>; <br>echo 请进!<br>; <br>} <br>?> </p> Copy after login |
第三步当然是做好注册的页面,也不多讲了。
第四步是注册后的身份确认和输入数据库。
<p>register.php: <br>mysql_connect("localhost","user","password") /*请修改用户名和密码*/ <br>or die("无法连接数据库,请重试"); </p><p>mysql_select_db("userinfo") <br>or die("无法选择数据库,请重试"); <br>$query="select id from usertbl where name=$name\";<br> /*从数据库中搜索相同名字的用户资料*/ <br>$result=mysql_query($query); <br>$numrows=mysql_num_rows($result); <br>if($numrows!=0) /*找到了当然就是有人先注册了相同的名字*/ <br>{echo 已有人注册此名,请重新选择名字!;} <br>else <br>{$query="insert into usertbl values(0,$name,$password,\)";<br> /*找不到相同的就输入新的用户资料*/ <br>mysql_query($query); <br>echo 注册成功; <br>echo 请登录!;} <br>?> </p> Copy after login |
下一步是cookie的使用,我原打算使用cookie来使每一页都能识别用户身份,但由于别的页面还没做好,不知道需要用到哪些资料。于是就只有一个很简单的使用,这里用到了PHP的引用:
<p>if(!$usercookie) <br>{header("非法用户"); <br>} <br>?> </p><p>welcome.php: </p><p>require("cookie.php"); /*调用cookie.php*/ <br>?> </p><p>echo $usercookie; <br>?> </p> Copy after login |
到这儿便完成了一个很简单的用户认证系统,当然如果你要使用它还得建好数据库。下面是我的数据库表的结构,库的名字是userinfo。
<p>create table usertbl <br>( <br>ID int auto_increment primary key, <br>Name varchar(30), <br>Password varchar(20), <br>Lastlogin varchar(20) <br>);</p> Copy after login |
(责任编辑 火凤凰 sunsj@51cto.com QQ:34067741 TEL:(010)68476636-8007)

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

On July 29, at the roll-off ceremony of AITO Wenjie's 400,000th new car, Yu Chengdong, Huawei's Managing Director, Chairman of Terminal BG, and Chairman of Smart Car Solutions BU, attended and delivered a speech and announced that Wenjie series models will be launched this year In August, Huawei Qiankun ADS 3.0 version was launched, and it is planned to successively push upgrades from August to September. The Xiangjie S9, which will be released on August 6, will debut Huawei’s ADS3.0 intelligent driving system. With the assistance of lidar, Huawei Qiankun ADS3.0 version will greatly improve its intelligent driving capabilities, have end-to-end integrated capabilities, and adopt a new end-to-end architecture of GOD (general obstacle identification)/PDP (predictive decision-making and control) , providing the NCA function of smart driving from parking space to parking space, and upgrading CAS3.0

MySQL query performance can be optimized by building indexes that reduce lookup time from linear complexity to logarithmic complexity. Use PreparedStatements to prevent SQL injection and improve query performance. Limit query results and reduce the amount of data processed by the server. Optimize join queries, including using appropriate join types, creating indexes, and considering using subqueries. Analyze queries to identify bottlenecks; use caching to reduce database load; optimize PHP code to minimize overhead.

Creating a MySQL table using PHP requires the following steps: Connect to the database. Create the database if it does not exist. Select a database. Create table. Execute the query. Close the connection.

One of the major changes introduced in MySQL 8.4 (the latest LTS release as of 2024) is that the "MySQL Native Password" plugin is no longer enabled by default. Further, MySQL 9.0 removes this plugin completely. This change affects PHP and other app

Apple's latest releases of iOS18, iPadOS18 and macOS Sequoia systems have added an important feature to the Photos application, designed to help users easily recover photos and videos lost or damaged due to various reasons. The new feature introduces an album called "Recovered" in the Tools section of the Photos app that will automatically appear when a user has pictures or videos on their device that are not part of their photo library. The emergence of the "Recovered" album provides a solution for photos and videos lost due to database corruption, the camera application not saving to the photo library correctly, or a third-party application managing the photo library. Users only need a few simple steps

Recently, Huawei announced that it will launch a new smart wearable product equipped with Xuanji sensing system in September, which is expected to be Huawei's latest smart watch. This new product will integrate advanced emotional health monitoring functions. The Xuanji Perception System provides users with a comprehensive health assessment with its six characteristics - accuracy, comprehensiveness, speed, flexibility, openness and scalability. The system uses a super-sensing module and optimizes the multi-channel optical path architecture technology, which greatly improves the monitoring accuracy of basic indicators such as heart rate, blood oxygen and respiration rate. In addition, the Xuanji Sensing System has also expanded the research on emotional states based on heart rate data. It is not limited to physiological indicators, but can also evaluate the user's emotional state and stress level. It supports the monitoring of more than 60 sports health indicators, covering cardiovascular, respiratory, neurological, endocrine,

How to use MySQLi to establish a database connection in PHP: Include MySQLi extension (require_once) Create connection function (functionconnect_to_db) Call connection function ($conn=connect_to_db()) Execute query ($result=$conn->query()) Close connection ( $conn->close())

To handle database connection errors in PHP, you can use the following steps: Use mysqli_connect_errno() to obtain the error code. Use mysqli_connect_error() to get the error message. By capturing and logging these error messages, database connection issues can be easily identified and resolved, ensuring the smooth running of your application.
