|
|
|
ถ้าเป็นฟรอมแบบนี้จะเปลี่ยน จากtxt เป็น list/menu ได้ยังไง |
|
|
|
|
|
|
|
คือผมต้องการใช้ listmenuแทน
Code (PHP)
<html>
<head>
<title>Status Nitrogen</title>
</head>
<body>
<?
$objConnect = mysql_connect("localhost","root","test") or die("Error Connect to Database");
$objDB = mysql_select_db("mydatabase");
$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>
Tag : PHP, CakePHP
|
|
|
|
|
|
Date :
2011-04-29 10:00:15 |
By :
sambeem001 |
View :
888 |
Reply :
1 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 02
|