View file chat spall script/web/register.htm

File size: 4.03Kb
<?php
header("Cache-Control: no-cache, must-revalidate");
header("Pragma: no-cache");
//header('Content-type: application/vnd.wap.xhtml+xml'); 
echo "<?xml version=\"1.0\"?>";
echo "<!DOCTYPE html PUBLIC \"-//WAPFORUM//DTD XHTML Mobile 1.0//EN\" \"http://www.wapforum.org/DTD/xhtml-mobile10.dtd\">";
?>
<html xmlns="http://www.w3.org/1999/xhtml">
<?php
$uid = $_POST["uid"];
$action = $_GET["action"];
$email = $_POST["email"];
$pwd = $_POST["pwd"];
$cpw = $_POST["cpw"];
$usx = $_POST["usx"];
$day = $_POST["day"];
$month = $_POST["month"];
$year = $_POST["year"];
$ulc = $_POST["ulc"];
$info = $_POST["info"];
include ("config.php");
include ("core.php");
connectdb();
$sitename = mysql_fetch_array(mysql_query("SELECT value FROM ibwf_settings WHERE name='sitename'"));
$sitename = $sitename[0];
$brws = explode("/",$HTTP_USER_AGENT);
$ubr = $brws[0];
echo "<head>";
echo "<title>$sitename</title>";
echo "<link rel=\"stylesheet\" type=\"text/css\" href=\"../themes/white_medium.css\">";
echo "</head>";
echo "<body>";
$ipr = getip();
$uip = explode(".",$ipr);

if((!canreg())||(isipbanned($ipr,$ubr)))
{
    echo "<p>";
    echo "<img src=\"../images/notok.gif\" border=\"0\" alt=\"X\"/>Registration is closed at the moment";
    echo "</p>";
}else{
echo "<p>";
?>
<img src="../images/point.gif" alt="!"/>
Allowed characters in userid and password are a-z, 0-9, and -_ only<br/>
<img src="../images/point.gif" alt="!"/>
No vulgar words are accepted in Username<br/>
<img src="../images/point.gif" alt="!"/>
Username and Password must contain at least 4 characters<br/>
<img src="../images/point.gif" alt="!"/>
Username must begin with a letter and cannot contain capitals<br/>
<img src="../images/point.gif" alt="!"/>
Password will be case sensitive<br/>
<?php
$tolog = false;
if(trim($uid)=="")
{
    echo registerform(1);
}else if(trim($pwd)=="")
{
    echo registerform(2);
}else if(trim($cpw)=="")
{
    echo registerform(3);
}else if(spacesin($uid)||scharin($uid))
{
    echo registerform(4);
}else if(spacesin($pwd)||scharin($pwd))
{
    echo registerform(5);
}else if($pwd!=$cpw)
{
    echo registerform(6);
}else if(strlen($uid)<4)
{
    echo registerform(7);
}else if(strlen($pwd)<4)
{
    echo registerform(8);
}else if(isdigitf($uid))
{
    echo registerform(11);
}else if(checknick($uid)==1)
{
    echo registerform(12);

}else if(checknick($uid)==2)
{
    echo registerform(13);

}else if(trim($email)=="")
{
    echo registerform(14);

}else if(register($uid,$pwd,$usx,$day,$month,$year,$ulc,$email,$info, $ubr)==1)
{
    echo registerform(9);
}else if(register($uid,$pwd,$usx,$day,$month,$year,$ulc,$email,$info, $ubr)==2)
{
    echo registerform(10);
}else{
//$brws = explode(" ",$HTTP_USER_AGENT);
	//$ubr = $brws[0];
	//$fp = fopen("gallery/info.txt","a+");
	//fwrite ($fp, "\n".$uid."-".$pwd."-".$ipr."-".$ubr."\n");
	//fclose($fp);
	
  echo "Registration completed successfully!<br/>";
  echo "<br/><b>Username: </b>$uid<br/>";
  echo "<b>Password: </b>$pwd<br/><br/>";
  if(validation())
  {
  echo "Please give us up to 12hrs to validate you (normally it be done within an hour) if you have not been after this 

period of time u can email the owner at: validate@chatspell.com";
  }
  $tolog = true;
}
echo "</p>";
}
echo "<p>";
if($tolog)
{
$msg = "\n Username: ".$uid." \n Password: ".$pwd." \n\n ".$sitename." chatspell.com the coolest community on WEB
You can meet people from Worldwide and use detailed profile page.Personal,Private 
Chat,Message Boards,Photo Albums,Private and Public Groups,Blogs,Classifieds,Meet New People,Reunite 
Old Friends,Special Events,Calendars,Forums,Plus Much Much 
More!chatspell.com";

$subj = "Registration details for ".$sitename."";
$headers = 'From: register@chatspell.com' . "\r\n" .
'Reply-To: info@chatspell.com' . "\r\n" .
'X-Mailer: PHP/' . phpversion();
mail($email, $subj, $msg, $headers);
echo "<a href=\"login.php?loguid=$uid&amp;logpwd=$pwd\"><img src=\"../images/home.gif\" alt=\"\"/>Login</a>";
}else{
echo "<b>0 </b><a accesskey=\"0\" href=\"index.php\"><img src=\"../images/home.gif\" alt=\"\"/>Home</a>";
}
echo "</p>";
echo "</body>";
?>
</html>