|
|
|
ตรวจสอบเปรียบทียบค่าครับ php กับ access ช่วยด้วยครับ |
|
|
|
|
|
|
|
Code (PHP)
<?
$objConnect = odbc_connect("mydatabase","","") or die("Error Connect to Database");
$strSQL = "SELECT * FROM customer WHERE CustomerID = '".$_GET["CusID"]."' ";
$objExec = odbc_exec($objConnect, $strSQL);
$objResult = odbc_fetch_array($objExec);
if(!$objResult)
{
echo "Not found CustomerID=".$_GET["CusID"];
}
else
{
.
.
.
}
?>
|
|
|
|
|
Date :
2011-08-10 20:13:20 |
By :
thaicreate |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 01
|