hi all wapmasters...have a nice day... i just tried to add a new thing in lavalair register form..when some one try to register it will automatic chek users email address...if they provide unique email then it will succees otherwise it will exit();
here is the php code ///////////
//////////////////ibwf reg page
note: i cant run it....what is the problem in this code??
any1 recode it..
//////////////////////
///////
//
/
here is the php code ///////////
//////////////////ibwf reg page
PHP Code:
$dupemail=mysql_fetch_array(mysql_query("SELECT email FROM ibwf_users where email ='$email'"));
if ($_REQUEST['email'] !=$dupemail[0])
{
echo"regiter ok";
/////////////register process
}else{
echo"this email is already used try another";
exit();
}
note: i cant run it....what is the problem in this code??
any1 recode it..
//////////////////////
///////
//
/
Comment