|
|
|
ขอวิธีการ Query SQL ของ checkbox หน่อยได้ใหมครับ ผมคิดไม่ออกจริงๆ |
|
|
|
|
|
|
|
ผมมี checkbox อยู่ แล้วถ้ามีการ กดcheckbox ให้ในฐานข้อมูลเปลี่ยนเป็น I ถ้าไม่ก็ที่ checkbox ให้เปลี่ยนเป็น A
ที่ผมเข้าเป็นแบบนี้ครับ เหลือปัญหาที่ checkbox ครับ
<?
include('connect.php');
include('formB1.php');
//$id = $_GET["txtCode"];
//$LastUpdate = $_POST["txtDate"];
$Company = $_POST["txtName"];
$CurAdd1 = $_POST["txtAddress"];
$Tel = $_POST["txtPhone"];
$Fax = $_POST["txtFax"];
$Email = $_POST["txtEmail"];
$Website = $_POST["txtWeb"];
$ContactPerson1 = $_POST["txtConnect"];
$ContactPosition1 = $_POST["txtPosition"];
$Credit = $_POST["txtCredit"];
$Remark = $_POST["txtComment"];
$Active = $_POST["checkbox"];
$sql = "SELECT MAX(CustID) FROM tbcustomer";
$query = mysql_db_query($dbname, $sql) or die("Can't Query");
$cus_id = mysql_fetch_array($query);
$id = $cus_id[0] + 1 ;
$sql= " INSERT INTO tbcustomer ( CustID, Company, Credit, CurAdd1, ContactPerson1, ContactPosition1, Tel, Fax, Email, Website, Remark,
LastUpdate, Active )
VALUES ( '$id', '$Company', '$Credit', '$CurAdd1', '$ContactPerson1', '$ContactPosition1', '$Tel', '$Fax', '$Email','$Website',
'$Remark', now(), 'I' )
";
$query = mysql_db_query($dbname, $sql) or die("Can't Query");
if($query)
{
echo " <script language='javascript'>
alert('Success');
window.location='menu_formB.php';
</script>
";
}else
{
echo " <script language='javascript'>
alert('Fail');
window.location='fromB1.php';
</script>
";
}
mysql_close();
?>
Tag : PHP
|
|
|
|
|
|
Date :
2011-08-23 18:22:51 |
By :
tangsupap |
View :
1131 |
Reply :
3 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (PHP)
if($_POST["checkbox"] != "")
{
$Active "I";
}
else
{
$Active "A";
}
|
|
|
|
|
Date :
2011-08-23 21:19:44 |
By :
webmaster |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ผมต้อง เอาไปเขียนไว้ตรงใหน หรือครับ
|
|
|
|
|
Date :
2011-08-24 01:15:28 |
By :
tangsupap |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
อ๋อ ได้ละครับ ขอบคุณมากครับ
|
|
|
|
|
Date :
2011-08-24 01:18:42 |
By :
tangsupap |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 00
|