ถ้าต้องการตรวจสอบข้อมูล user ที่หน้าสมัครสมาชิกว่ามี user รึยังจะตรวจสอบจาก database ยังไงดีครับ
ส่งค่า username ไป
select username from table where username = '$username'
แล้วก็เช็คว่า ถ้ามีข้อมูลแล้ว ก็ให้แสดงว่ามีคนใช้ username นี้แล้ว
ถ้ายังไม่มีคนใช้ ก็ให้ insert ข้อมูลลงไปได้
Date :
2011-04-12 08:39:18
By :
avsqlz
Code (PHP)
<html>
<head>
<title>ThaiCreate.Com PHP & MySQL Tutorial</title>
</head>
<body>
<?
$objConnect = mysql_connect("localhost","root","root") or die("Error Connect to Database");
$objDB = mysql_select_db("mydatabase");
$strSQL = "SELECT * FROM customer WHERE CustomerID = '".$_POST["txtCustomerID"]."' ";
$objQuery = mysql_query($strSQL);
$objResult = mysql_fetch_array($objQuery);
if($objResult)
{
echo "CustomerID already exist.";
}
else
{
$strSQL = "";
$strSQL = "INSERT INTO customer ";
$strSQL .="(CustomerID,Name,Email,CountryCode,Budget,Used) ";
$strSQL .="VALUES ";
$strSQL .="('".$_POST["txtCustomerID"]."','".$_POST["txtName"]."','".$_POST["txtEmail"]."' ";
$strSQL .=",'".$_POST["txtCountryCode"]."','".$_POST["txtBudget"]."','".$_POST["txtUsed"]."') ";
$objQuery = mysql_query($strSQL);
if($objQuery)
{
echo "Save Done.";
}
else
{
echo "Error Save [".$strSQL."]";
}
}
mysql_close($objConnect);
?>
</body>
</html>
Go to : Ajax Check Username (PHP+MySQL and ASP+Access)
Go to : PHP MySQL Check Already Exists Add/Insert Record
Date :
2011-04-12 08:50:23
By :
webmaster
Load balance : Server 04