|
|
|
สอบถามเรื่องการสมัึครสมาชิก ชื่อซ้ำๆ PHP+MYSQL ครับ |
|
|
|
|
|
|
|
select ตรวจหาก่อนว่ามีรหัส ซ้ำกันหรือเปล่า ก่อนจบันทึกข้อมูล
เช่น
select * from *** where coed=$_POST['coed']
if($row<0){
error ข้อมูลซ้ำ
}else{
เพิ่มได้
}
|
|
|
|
|
Date :
2011-09-18 16:41:20 |
By :
ckcr |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (PHP)
<?
$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);
?>
Go to : PHP MySQL Check Already Exists Add/Insert Record
|
|
|
|
|
Date :
2011-09-19 21:13:46 |
By :
webmaster |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 00
|