|
|
|
ขอสอบถามหน่อยนะค่ะ จะให้แสดงข้อความ Username ซ้ำ โดยเช็คจาก ฐานข้อมูล |
|
|
|
|
|
|
|
Apply จากตัวนี้ครับ
PHP MySQL Check Already Exists Add/Insert Record
|
|
|
|
|
Date :
2013-04-11 06:26:29 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
พี่ค่ะแล้วถ้าจะให้มันแสดงอยู่ที่หน้าเดิม ไม่เปลี่ยนหน้าต้องทำไงอ่ะค่ะ
|
|
|
|
|
Date :
2013-04-11 13:43:25 |
By :
kongkang |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
อ่านแล้ว งง อ่ะค่ะ
|
|
|
|
|
Date :
2013-04-11 13:59:54 |
By :
kongkang |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Action ไปหน้าเดิมน่ะครับ
|
|
|
|
|
Date :
2013-04-11 14:16:09 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ลองเขียนคร่าว ๆ ครับ
Code (PHP)
<?
$strError = "";
if($_GET["Action"] == "Save")
{
// Checlk username
// Example error
/*
*
*Save
*
*/
$strError = "Exists User";
if($strError=="")
{
header("location:finish.php");
exit();
}
}
?>
<form name="form1" method="post" action="?Action=Save">
<?
if($strError != "")
{
echo "$strError";
}
?>
<table width="100" border="1">
<tr>
<td>a</td>
<td><input type="text" name="textfield"></td>
</tr>
<tr>
<td>b</td>
<td><input type="text" name="textfield2"></td>
</tr>
<tr>
<td> </td>
<td><input type="submit" name="Submit" value="Submit"></td>
</tr>
</table>
</form>
|
|
|
|
|
Date :
2013-04-11 14:19:36 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ทำได้แล้ว ขอบคุณทุกคนมากๆนะค่ะ
|
|
|
|
|
Date :
2013-04-12 23:17:07 |
By :
kongkang |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 00
|