View Single Post
Old 07-29-2007   #1 (permalink)
brooksaar
Registered User
 
brooksaar's Avatar
 
Join Date: Apr 2006
Posts: 3

PHP Member Script Registration Error

Hey,

I've followed the PHP Complete Membership Script tutorial, using the downloaded files, studying & making additions (such as, so i have to validate a user, as this is for my clan).

The register.php file is giving me problems. When i upload it to my webspace, nothing comes up.
Here is the URL: http://ets-clan.joolo.com/register.php
Here is the Register.php code:
PHP Code:
<?php

include 'config.php';

if(isset(
$_POST['submit']))
{

    
$first addslashes(trim($_POST['firstname']));
    
$surname addslashes(trim($_POST['surname']));
    
$username addslashes(trim($_POST['username']));
    
$email addslashes(trim($_POST['email']));
    
$pass addslashes(trim($_POST['password']));
    
$conf addslashes(trim($_POST['confirm']));
    
    
$ip $_SERVER['REMOTE_ADDR'];
    
$date date("d, m y");
    
    if ( 
$_POST['password'] == $_POST['confirm'] )
    {}else{
    
        echo 
'<script>alert("Your passwords were not the same, please enter the same password in each field.");</script>';
        echo 
'<script>history.back(1);</script>';
        exit;
    
    }
    
    
$password md5($pass);
    
    if ((((( empty(
$first) ) || ( empty($surname) ) || ( empty($username) ) || ( empty($email) ) || ( empty($password) )))))
    {
    
        echo 
'<script>alert("One or more fields was left empty, please try again.");</script>';
        echo 
'<script>history.back(1);</script>';
        exit;

    }
    
    if((!
strstr($email "@")) || (!strstr($email ".")))
    {
    
        echo 
'<script>alert("You entered an invalid email address. Please try again.");</script>';
        echo 
'<script>history.back(1);</script>';
        exit;

    }
    
    
$q mysql_query("SELECT * FROM Users WHERE Username = '$username'") or die(mysql_error());
    if(
mysql_num_rows($q) > 0)
    {
    
        echo 
'<script>alert("The username you entered is already in use, please try again.");</script>';
        echo 
'<script>history.back(1);</script>';
        exit;
            
    }
    
    
$name $first ' ' $surname;
    
$actkey mt_rand(1500).'f78dj899dd';
    
$act sha1($actkey);
    
    
$query mysql_query("INSERT INTO Users (Username, Password, Name, Email, Date, IP, Actkey) VALUES ('$username','$password','$name','$email','$date','$ip','$act')") or die(mysql_error());
    
$send mail(ETS-Clan@gmail.com "Registration Confirmation" " ".$username." has Registered with the [ETS] Clan.\n\nClick the link below to activate thier account:\nhttp://ets-clan.joolo.com/activate.php?id=".$act."\n\nPlease do not reply, this is an automated mailer.\n\nThanks""FROM: auto@mailer.com");
    
$send mail(ETS-Clan@gmail.com "Registration Confirmation" " Thank you for registering with the [ETS] Clan.\n\nYour username and password is below.\n\nUser: ".$username."\nPass: ".$pass."\n\nYour Account must be first Activated by the Admin. This could take upto 48hrs, except in extreme circumstances (Vacationing,etc.).\n\nPlease do not reply, this is an automated mailer.\n\nThanks""FROM: ets-clan@gmail.com");
    
    
    
    if((
$query)&&($send))
    {
    
        echo 
'    <html>
                <head>
                <title>Success</title>
                <link href="style.css" rel="stylesheet" type="text/css">
                </head>
                
                <body>
                
                <div id="success">
                <p>Thank you for registering, the admin will soon recieve an email to confirm & activate your registration. No Personal Details are included in this email.</p>
                <p><a href="login.php">Click here</a> to login once you have activated.</p>
                </div>
                
                </body>
                </html>
                '
;    
                
    } else {
    
        echo 
'
                <html>
                <head>
                <title>Error</title>
                <link href="style.css" rel="stylesheet" type="text/css">
                </head>
                
                <body>
                
                <div id="error">
                <p>We are sorry, there appears to be a problem with our script at the moment.</p>
                <p>Your data was not lost. Username: '
.$username.' | Password: '.$pass.' | Email: '.$email.' | Full name: '.$name.'</p>
                <p>Please try again later.</p>
                </div>
                
                </body>
                </html>
                '
;    
                
    }
                
} else {

?>
<html>
<head>
<title>Register</title>
<link href="style.css" rel="stylesheet" type="text/css">
</head>

<body>

<div id="wrapper">

<div id="head">the registration page</div>
<br>
<div id="main">
<p>Welcome to the registration, fill out the form below and hit Submit. All fields are required,so fill them all out! </p>
<form action="<?= $_SERVER['PHP_SELF'?>" method="post">
<table width="100%" border="0" cellpadding="0" cellspacing="0">
<tr>
<td width="50%">First name </td>
<td width="50%"><input name="firstname" type="text" id="firstname"></td>
</tr>
<tr>
<td>Surname</td>
<td><input name="surname" type="text" id="surname"></td>
</tr>
<tr>
<td>Email Address </td>
<td><input name="email" type="text" id="email"></td>
</tr>
<tr>
<td>Username</td>
<td><input name="username" type="text" id="username"></td>
</tr>
<tr>
<td>Password</td>
<td><input name="password" type="password" id="password"></td>
</tr>
<tr>
<td>Confirm Password </td>
<td><input name="confirm" type="password" id="confirm"></td>
</tr>
<tr>
<td>Register</td>
<td><input name="submit" type="submit" class="textBox" value="Submit"></td>
</tr>
</table>
</form>
Upon confirmation of your details, you will be sent an email containing your username, password and details on how to activate your account so as to be able to use this website. </div>

</div>

</body>
</html>

<? mysql_close($l); ?>
Can any of you tell me what i'm doing wrong?

Thanks,
brooksaar is offline