ช่วยดูโค้ดสมัครสมาชิกให้หน่อยค่ะ มันแอดข้อมูลไม่ลง
มันขึ้น ERROR แบบนี้ค่ะ แล้วพอไปดูในฐานข้อมูล มานแอดไม่ลง
Code (PHP)
<?
require("admin/config.php");
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
</head>
<body>
<?
$name2=$_POST[name2];
$lastname=$_POST[lastname];
$messrs=$_POST[messrs];
$address=$_POST[address];
$province=$_POST[province];
$country=$_POST[country];
$zip=$_POST[zip];
$phone=$_POST[phone];
$username=$_POST[username];
$password=$_POST[password];
$email=$_POST[email];
$dbarr=mysql_fetch_array(mysql_query("select max(id_mem) as numid from member where member_priority ='3' "));
$m=$dbarr[numid];
//----------------------------------------------------------- set id
$num_tmp="";
$bool_check_str=false;
$id="";
$bulcheck=true;
for($i=1;$i<strlen($m);$i++)
{
//echo $m[$i]."<br>";
if($m[$i]!="0")$bool_check_str=true;
if($bool_check_str==true)$num_tmp=$num_tmp.$m[$i];
}
$num_tmp= $num_tmp+1;
if($num_tmp<=10&&$bulcheck==true){$id_mem="M0000".$num_tmp;$bulcheck=false;}
else if($num_tmp<=100&&$bulcheck==true){$id_mem="M000".$num_tmp;$bulcheck=false;}
else if($num_tmp<=1000&&$bulcheck==true){$id_mem="M00".$num_tmp;$bulcheck=false;}
else if($num_tmp<=10000&&$bulcheck==true){$id_mem="M0".$num_tmp;$bulcheck=false;}
else if($num_tmp<=100000&&$bulcheck==true){$id_mem="M".$num_tmp;$bulcheck=false;}
//echo $user_id;
if($username!=""&&$password!=""){
//------------------------------ email ผิด
if(!eregi("^[_a-z0-9-]+(\.[_a-z0-9-]+)*@[a-z0-9-]+(\.[a-z0-9-]+)$",$email)){
echo "<br><br><center><font size='3' face='MS Sans Serif'><b>กรุณากรอกอีเมล์ให้ถูกต้อง</b></font>" ;
echo "<br><br><input type='button' value='edit your email' onclick='history.back();'></center>" ;
exit() ;
}
else{
// 2 field สุดท้าย field สุดท้ายคือ ระดับ 2 คือ สถานะสมาชิก ส่วน field ถัดมา O คือ สถานะการเปิดใช้งานสมาชิก O คือสมาชิกพร้อมใช้งาน
mysql_query("insert into member values('$id_mem','$name2','$lastname','$messrs','$address','$province','$country','$zip','$phone','$username',MD5('$password'),'$email','O','3')");
//------------- register complete
echo "<center><font size=\"3\" face='MS Sans Serif'><b>ขอบคุณ สำหรับการลงทะเบียนเป็นสมาชิก ท่านสามารถเริ่มการ Login ได้ทันที</b></font></center>";
echo "<meta http-equiv='refresh' content='2; url=home.php'>" ;
}
}
else{
echo "<br><br><input type='button' value='กรุณาเช็คข้อมูลที่ต้องกรอก' onclick='history.back();'></center>" ;
}
?>
</body>
</html>
Tag : PHP, MySQL
Date :
2011-06-09 11:18:20
By :
badtzyui
View :
843
Reply :
8
ลองเปลี่ยนบรรทัดนี้ดูน่ะครับ
Code (PHP)
$dbarr=mysql_fetch_array(mysql_query("select max(id_mem) as numid from member where member_priority ='3' "));
//เปลี่ยนเป็น
$dbarr=mysql_fetch_array(mysql_query("select max(id_mem) as numid from member where member_priority =3"));
Date :
2011-06-09 11:36:54
By :
mangkunzo
เป็นเหมือนเดิมค่ะ
Date :
2011-06-09 11:38:46
By :
badtzyui
ขอบคุณค่ะ
Date :
2011-06-09 14:56:24
By :
badtzyui
ลอง แบบนี้ดูครับ
Code (PHP)
$dbarr=mysql_fetch_array(mysql_query("select max(id_mem) as numid from member where member_priority ='3'"));
Date :
2011-06-09 20:24:36
By :
slurpee55555
Date :
2011-06-13 16:45:02
By :
เด็ก
Load balance : Server 05