|
|
|
กรอกข้อมูลแล้วไม่ลง ฐานข้อมูลครับ คือๆ มานไม่มี Error อะไรบอกครับผมเองก็ไม่รู้จะไปแก้ตรงไหน |
|
|
|
|
|
|
|
คือๆ มานไม่มี Error อะไรบอกครับผมเองก็ไม่รู้จะไปแก้ตรงไหนCode (PHP)
file connect database
Code (PHP)
<?php
function connect_db($database)
{
//ติดต่อกับฐานข้อมูล
$result = mysql_connect("localhost","root","1234");
if(!$result)
return false;
if(!mysql_select_db($database))
return false;
return $result;
}
?>
file check_data
Code (PHP)
<?php
function check_valid_user()
{
global $valid_user;
if(session_is_registered("valid_user"))
$str = "<tr><td colspan = \"3\"><font face = \"MS Sans Serif\" color = \"#000000\" size =\"3\">ยินดต้อนรับคุณ $valid_user</font></td></tr>";
else
$str = "<center>คุณไม่สามารถล็อกอินได้</center><br>";
return $str;
}
//---------------------------------------------------------------------------------------------------------------------------------
function valid_email($add)
//ตรวจสอบอีเมล์
{
if(ereg("^[a-zA-Z0-9_]+@[a-zA-Z0-9/-]+\.[a-zA-Z0-9\-\.]",$add))
return true;
else
return false;
}
//---------------------------------------------------------------------------------------------------------------------------------
function check_admin()
{
global $authuser;
if(session_is_registered("authuser"))
{
echo "<tr><td><center>ล็อกอินโดยผู้ดูแลระบบ $authuser</center><br>";
return false;
exit;
}
}
//------------------------------------------------------------------------------------------------------------------------------------
function filled_out($form_vars)
{
foreach($form_vars as $key => $value);
{
if(!isset($key)||($value==""))
return false;
}
return true;
}
?>
file function
Code (PHP)
<?php
function register($username,$password,$email)
{
$con = connect_db("ktpbook");
if(!$con)
return "ไม่สามารถติดต่อกับฐานข้อมูลได้";
$sql = "select * from users where username = '$username'";
$result = mysql_query($sql);
if(!$result)
return "กรุณาตรวจสอบคิวรี่ อีกครั้ง<br>";
if(mysql_num_rows($result)>0)
return "ชื่อของผู้ใช้ซ้ำกับฐานข้อมูล<br>";
$result = mysql_query("insert into users values ('$username,password('$password'),'$answer','$email')");
if($result)
return("ไม่สามารถลงทะเบียนได้");
else
return true;
}
?>
file register_form
Code (PHP)
<?php
require_once("connect_db.php");
?>
<form action = "register_new.php" method="post"><br>
<table align="center" border=1 bordercolor="#FF5544" cellspacing=0 bgcolor="#FFFFCC" width=270>
<tr height=30>
<td colspan=2 align="center"bgcolor="#FFAA00"height=30><font face="MS Sans Serif" color="FFFFFF" size=3><b>Register form</b></font></td>
</tr>
<tr height=30>
<td><font face ="Ms Sans Serif" color="#000000" size=3><b>อีเมล์</b>
</font>
</td>
<td><input name = "email" type = "text">
</td>
</tr>
<tr height =30>
<td><font face ="Ms Sans Serif" color="#000000" size=3><b>ชื่อผู้ใช้</b>
</font>
</td>
<td><input name = "username" type = "text">
</td>
</tr>
<tr height = "30">
<td><font face ="Ms Sans Serif" color="#000000" size=3><b>รหัสผ่าน</b>
</font>
</td>
<td><input name = "password1" type = "password">
</td>
</tr>
<tr height=30>
<td><font face="Ms Sans Serif" color="#000000" size=3><b>ยืนยันรหัสผ่าน</b>
</font>
</td>
<td><input name = "password2" type = "password">
</td>
</tr>
<tr height=30>
<td colspan=2 align="center">
<input type = "submit" name = "register" value = "ลงทะเบียน">
</tr>
</table>
</form>
?>
file register_new
Code (PHP)
<?php
require_once("function.php");
require_once("check_data.php");
require_once("connect_db.php");
session_start();
if(!filled_out($HTTP_POST_VARS))
{
echo "เกิดความผิดพลาดในการกรอกข้อมูล";
//require_once("footer.php");
exit;
}
//------------------------------อีเมล์ไม่ถูกต้อง------------------------------------------------------------------------------
if(!valid_email($email))
{
echo "อีเมล์ไม่ถูกต้อง กรุณากลับไปตรวจสอบอีกครั้งครับ!!";
//require_once("footer.php");
exit;
}
//----------รหัสผ่านไม่ถูก-----------------------------------------------------------------------------------------------------
if(!$password1 !=$password)
{
echo "อีเมล์ไม่ถูกต้อง กรุณากลับไปตรวจสอบอีกครั้งครับ!!";
//require_once("footer.php");
exit;
}
//---------ตรวจสอบความยาวของรหัสผ่าน------------------------------------------------------------------------------------
if(strlen($password1)<6 || strlen($password2)>16)
{
echo "ความยาวของรหัสผ่านไม่อยู่ในช่วง6ถึง16ตัวครับ!!";
//require_once("footer.php");
exit;
}
//------ลงทะเบียน----------------------------------------------------------------------------------------------------------------
$reg_result = register($username,$password1,$email);
if($reg_result)
{
$valid_user = ($username);
session_register("valid_user");
echo "$valid_user";
//require_once("register_show.php");
}
else
{
echo $reg_result;
//require_once("footer.php");
exit;
}
//require_once("footer.php");
?>
Tag : - - - -
|
|
|
|
|
|
Date :
2009-07-14 20:40:22 |
By :
popnakub |
View :
1109 |
Reply :
6 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ผมเองก็ไม่รู้ว่าทำไม ข้อมูลไม่ลง database ครับ งง มาก ครับผม รบกวน พี่ๆ ผู้รู้ ชีแจ้งผมด้วยนะครับ
ปล.ขอขอบคุณทุกๆคำตอบครับผม หากผมโพส ผิดพลาดอะไรไปก็ขอโทษด้วยนะครับ
|
|
|
|
|
Date :
2009-07-14 20:42:38 |
By :
popnakub |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ไม่เห็นมีโค้ด ตอนบันทึกข้อมูลเลยครับ
|
|
|
|
|
Date :
2009-07-14 21:02:02 |
By :
pjgunner |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ไม่เห็นมีโค้ด ตอนบันทึกข้อมูลเลยครับ
ปล.โทษทีนะครับผมเองก็ ไม่รู้ว่าจะเขียนแทรกตรงไหน รบกวนอีกเรื่องนะครับ(หากได้)ช่วยเขียนCode บันทึกให้ผมหน่อยได้ครับ มือใหม่ ยังไม่คล่อง T^T...
ขอขอบคุณครับที่เข้ามาตอบกระผม^^"
|
|
|
|
|
Date :
2009-07-14 23:46:41 |
By :
popnakub |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอบคุณสำหรับคะแนนนะครับ แต่เห็นคุณเขียนมาตั้งยาว ไม่เห็น บันทึกข้อมูลเลย
ก็สั่งคิวรี่ insert into ไปเลยคับ หลังจากเช็คข้อมูลเสร็จ
|
|
|
|
|
Date :
2009-07-15 00:03:53 |
By :
pjgunner |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ลองเช็คที่ Function register ดูก่อนนะครับ
$result = mysql_query("insert into users values ('$username,password('$password'),'$answer','$email')");
มันน่าจะเป็น
รับ parameter เข้ามาแค่ 3
แต่จะ insert ลงไป 4
ลองเช็คดูดี ๆ นะครับ
|
|
|
|
|
Date :
2009-07-15 09:31:28 |
By :
taobsd |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ผมลองดูแล้ว นะ ครับ มาน ก็ไม่ลง Database อยู่ ดี ครับ งง มาก เลย ครับ ตอนนี้ ไม่รู้ จะทำไงแล้ว งับ รบกวนช่วยผมด้วยครับ T^T....
|
|
|
|
|
Date :
2009-07-16 16:28:59 |
By :
popnakub |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 04
|