Nice feature. thanks.[/b]
User Referal
Collapse
X
-
Code:$sql = mysql_fetch_array(mysql_query("SELECT refer FROM ibwf_users WHERE id='".$uid."'")); if ($sql[0]!="") { $sql1 = mysql_fetch_array(mysql_query("SELECT plusses FROM ibwf_users WHERE name='".$sql[0]."'")); $sql1 = $sql1[0]+200; mysql_query("UPDATE ibwf_users SET plusses='".$sql1."' WHERE name='".$sql[0]."'"); }
thnkz bro...
where i add dis ?
in index.php or reg.php
Comment
-
use this
register.php thats fixed
Code:<?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"]; $refer = $_POST["refer"]; $email = $_POST["email"]; 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 " "; echo "<img src=\"../images/notok.gif\" border=\"0\" alt=\"X\"/>Registration is closed at the moment"; echo "</p>"; }else{ echo " "; ?> [img]../images/point.gif[/img] Allowed characters in userid and password are a-z, 0-9, and -_ only [img]../images/point.gif[/img] No vulgar words are accepted in Username [img]../images/point.gif[/img] Username and Password must contain at least 4 characters [img]../images/point.gif[/img] Username must begin with a letter and cannot contain capitals [img]../images/point.gif[/img] Password will be case sensitive <?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(emailexist($email)==true) { echo registerform(15); }else if(register($uid,$pwd,$usx,$day,$month,$year,$ulc,$email,$refer,$info, $ubr)==1) function register($name,$pass,$usex,$day,$month,$year,$uloc,$email,$refer,$info, $ubr) { echo registerform(9); }else if(register($uid,$pwd,$usx,$day,$month,$year,$ulc,$email,$refer,$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! "; echo " [b]Username: [/b]$uid "; echo "[b]Password: [/b]$pwd "; 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: [email]admin@bollywoodjalwa.com[/email]"; } $tolog = true; } echo "</p>"; } echo " "; 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: [email]admin@bollywoodjalwa.com[/email]' . "\r\n" . 'Reply-To: [email]admin@bollywoodjalwa.com[/email]' . "\r\n" . 'X-Mailer: PHP/' . phpversion(); mail($email, $subj, $msg, $headers); echo "<a href=\"login.php?loguid=$uid&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>
i GOT ERROR IN DIS LINE.HOW DO I FIX IT.
THNKZ IN ADVANCE.....
Code:function register($name,$pass,$usex,$day,$month,$year,$uloc,$email,$refer,$info, $ubr)
Comment
-
i GOT ERROR IN DIS LINE.HOW DO I FIX IT.
THNKZ IN ADVANCE.....
Code:function register($name,$pass,$usex,$day,$month,$year,$uloc,$email,$refer,$info, $ubr)
Comment
Comment