Member Registration Script
By Blair Ireland
Senior Editor, TheScripts.com
As you can see, our action tag in that form is pointed at http://www.yoursite.com/register.php3. Change this accordingly, but I guess I have to explain what register.php3 is.
0) {
showheader("User Name Taken !");
?>
We are sorry to inform you that the User Name Is already Taken.
You have registered.
User Name:
Password:
Your Two Passwords Did Not Match
The function showheader is just a handy way to show the top HTML. It takes the argument $title, which is shown in the part. showfooter takes no arguments, and just shows the bottom HTML.
mysql_connect("localhost", "username", "password");
Connects the script to the database, using the host, username and password provided.
mysql_select_db("users");
This selects the database containing our table.
Since we are confirming the password, we have to check if they match before proceeding. Therefore, we use the if statment
if ($Password == $Password2) {
Now that we are done that, we have to look for identical usernames already existing. We do this with a simple query.
$user = mysql_query("SELECT * FROM personalize WHERE (Name='$Name')");
if (mysql_num_rows($user) > 0) {
showheader("User Name Taken !");
?>
We are sorry to inform you that the User Name Is already Taken.
tag.
It looks like setcookie("cookie name", "cookie value", $expirydate, "path");
time()+31536000 means that we are setting the expiry date to exactly one year from now. It is represented by a timestamp. The path of "/" just means it can be used throughout your entire site.
After that, we are just calling our showheader function again, displaying the HTML, and showfooter().
« PHP News Script
DBCLIX
Standar : Member Klik = Rp. 100,- / Referral Klik = Rp. 50,-