|
|
|
การ INSERT ข้อมูลเข้าไปที่ Table แบบมีเงื่อนไขครับ |
|
|
|
|
|
|
|
select ดูก่อนครับ ถ้าไม่ซ้ำค่อย insert
|
|
|
|
|
Date :
2012-11-09 11:45:24 |
By :
cyberstein |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
เอาไปลองเอง
Code (PHP)
<?
include("connect.php");
$strSQL = "SELECT * FROM member WHERE NAME = '".trim($_POST["NAME"])."' ";
$objQuery = mysql_query($strSQL);
$objResult = mysql_fetch_array($objQuery);
if($objResult)
{
echo "บันทึก ชื่อซ้ำกันไม่ได้";
echo "<meta http-equiv=refresh content=1;URL=insert.php>";
}
else
{
$strSQL = "INSERT INTO member ";
$strSQL .="(id,NAME,color) ";
$strSQL .="VALUES ";
$strSQL .="('".$_POST["id"]."','".$_POST["NAME"]."','".$_POST["color"]."') ";
$objQuery = mysql_query($strSQL);
if($objQuery)
{
echo "บันทึกข้อมูลเรียบร้อย";
echo "<meta http-equiv=refresh content=1;URL=member.php>";
}
else
{
echo "Error Save [".$strSQL."]";
}
}
?>
|
|
|
|
|
Date :
2012-11-09 11:56:26 |
By :
compiak |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 05
|