View file web/register.php

File size: 4.68Kb
<?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"];
$pwd = $_POST["pwd"];
$cpw = $_POST["cpw"];
$email = $_POST["email"];
$ubr = $_POST["browserm"];
$usx = $_POST["usx"];
$day = $_POST["day"];
$month = $_POST["month"];
$year = $_POST["year"];
$ulc = $_POST["ulc"];
$info = $_POST["info"];
$brws = $_POST["brws"];
$usex = $_POST["usex"];

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("/",$_SERVER['HTTP_USER_AGENT']);

$ubr = $brws[0];



echo "<head>";



echo "<title>$sitename</title>";



echo "<link rel=\"stylesheet\" type=\"text/css\" href=\"../themes/black_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("/",$_SERVER['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)";



  }



  $tolog = true;



}



echo "</p>";



}



echo "<p>";



if($tolog)



{



$msg = "\n Username: ".$uid." \n Password: ".$pwd." \n\n ".$sitename." is a nice friendly chat community we are glad to hav u with us :o) pls feel free to bring ya m8s along \n\n Thank You\n".$sitename."";



$subj = "Registration details for ".$sitename."";



$headers = 'From: owner@vodkawap.us.to' . "\r\n" .



'Reply-To: fiona@scotland.uk.to' . "\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>