|
|
|
Ajax ทำงานผิดพลาด ตรงไหน ครับผม ยิ่งทำ ยิ่ง งง 55555+ |
|
|
|
|
|
|
|
ทำไมไม่เปลี่ยนไปใช้ jQuery กับ Ajax แทนครับ มันช่วยลดปัญหา bug ได้เยอเลยครับ
|
|
|
|
|
Date :
2013-02-05 12:34:08 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
อ๋อ อย่าง นั้น นี่ เอง อิอิ
|
|
|
|
|
Date :
2013-02-05 12:39:23 |
By :
akuyakung |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
เขียนใหม่แล้วได้ดังนี้ สำเร็จ !!! อิอิ
สำหรับลงทะเีีีบียน
Code (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>
<form name="form1" method="post" action="save_register.php">
Register Form <br>
<table width="400" border="1" style="width: 400px">
<tbody>
<tr>
<td width="125"> Username</td>
<td width="180">
<input name="user" type="text" id="user" size="20">
</td>
</tr>
<tr>
<td> Password</td>
<td><input name="pass" type="password" id="pass">
</td>
</tr>
</tbody>
</table>
<br>
<input type="submit" name="Submit" value="Save">
</form>
</body>
</html>
สำหรับ บันทึก ลงฐานข้อมูล
Code (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>
<?
mysql_connect("localhost","root","1234");
mysql_select_db("social network");
if(trim($_POST["user"]) == "")
{
echo "Please input Username!";
exit();
}
if(trim($_POST["pass"]) == "")
{
echo "Please input Password!";
exit();
}
$strSQL = "SELECT * FROM usersdetail WHERE user = '".trim($_POST['user'])."' ";
$objQuery = mysql_query($strSQL);
$objResult = mysql_fetch_array($objQuery);
if($objResult)
{
echo "Username already exists!";
}
else
{
$strSQL = "INSERT INTO usersdetail (user,pass) VALUES ('".$_POST["user"]."',
'".$_POST["pass"]."')";
$objQuery = mysql_query($strSQL);
echo "Register Completed!<br>";
echo "<br> Go to <a href='login.php'>Login page</a>";
}
mysql_close();
?>
</body>
</html>
|
|
|
|
|
Date :
2013-02-05 12:56:42 |
By :
akuyakung |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ไม่ใช้ ajax แล้วหรอครับ
|
|
|
|
|
Date :
2013-02-05 12:59:45 |
By :
Necrotorture |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอ ง่าย ไว้ ก่อน เดี๋ยว จะ งง เอง เดี๋ยว ค่อยๆเพิ่มความซับซ้อนเข้าไป 5555+
www.view-records.com (นักพัฒนา View Records)
|
|
|
|
|
Date :
2013-02-05 13:02:48 |
By :
akuyakung |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
จัดไป
|
|
|
|
|
Date :
2013-02-05 13:29:44 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 04
|