|
|
|
Warning:หมายความว่ายังไงเหรอครับ รบกวนด้วยครับมือใหม่เพิ่งหัดเขียนเป็นครั้งแรก |
|
|
|
|
|
|
|
จากโค๊ด 111.php
Code (PHP)
<html>
<head>
<title>ThaiCreate.Com PHP & Oracle Tutorial</title>
</head>
<body>
<form action="222.php" method="post">
<table width="654" border="1">
<tr>
<th width="87"> <div align="center">CustomerID </div></th>
<th width="120"> <div align="center">Name </div></th>
<th width="120"> <div align="center">Address</div></th>
<th width="180"> <div align="center">Email</div></th>
<th width="90"> <div align="center">Tel</div></th>
<th width="17"> </th>
</tr>
<tr>
<td><div align="center"><input type="text" name="txtCustomerID" size="4"></div></td>
<td><input type="text" name="txtName" size="30"></td>
<td><input type="text" name="txtEmail" size="30"></td>
<td><div align="center"><input type="text" name="txtCountryCode" size="30"></div></td>
<td align="right"><input type="text" name="txtBudget" size="15"></td>
<td align="right"> </td>
</tr>
</table>
<input type="submit" name="submit" value="submit">
</form>
</body>
</html>
222.php
Code (PHP)
<html>
<head>
<title>ThaiCreate.Com PHP & Oracle Tutorial</title>
</head>
<body>
<?
$objConnect =oci_connect("root","root","","AL32UTF8");
$strSQL = "INSERT INTO CUSTOMER3";
$strSQL .="(CusID,CusName,CusAdd,Email,Tell,) ";
$strSQL .="VALUES ";
$strSQL .="('".$_POST["txtCusID"]."','".$_POST["txtCusName"]."','".$_POST["txtCusAdd"]."' ";
$strSQL .=",'".$_POST["txtEmail"]."','".$_POST["txtTell"]."') ";
$objParse = oci_parse($objConneact, $strSQL);
$objExecute = oci_execute($objParse, OCI_DEFAULT);
if($objExecute)
{
oci_commit($objConnect); //*** Commit Transaction ***//
echo "Save Done.";
}
else
{
oci_rollback($objConnect); //*** RollBack Transaction ***//
echo "Error Save [".$strSQL."";
}
oci_close($objConnect);
?>
</body>
</html>
Tag : PHP, Oracle, CakePHP
|
|
|
|
|
|
Date :
2011-09-30 09:08:53 |
By :
DamnriderZ |
View :
971 |
Reply :
2 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
$strSQL .="(CusID,CusName,CusAdd,Email,Tell,) ";
|
|
|
|
|
Date :
2011-09-30 09:15:51 |
By :
ikikkok |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ลองดูนะครับ บางครั้งผมอาจจะ บอกผิดไปบ้าง ผมก็ขอโทดด้วยนะครับ ถ้าผิดตรงไหน ให้ พี่ ๆ ช่วยบอกด้วยนะครับ
ผมจะได้นำมาปรับปรุ่งครับ
Code (PHP)
<?
$objConnect = mysql_connect("localhost","root","password") or die("Error Connect to Database");
$objDB = mysql_select_db("ฐา้นข้อมูล");
mysql_query("SET NAMES TIS620");
{
$strSQL = "INSERT INTO CUSTOMER3";
$strSQL .="(CusID,CusName,CusAdd,Email,Tell) ";
$strSQL .="VALUES ";
$strSQL .="('".$_POST["txtCusID"]."','".$_POST["txtCusName"]."','".$_POST["txtCusAdd"]."','".$_POST["txtEmail"]."','".$_POST["txtTell"]."') ";
$objQuery = mysql_query($strSQL);
}
if($objQuery)
{
echo "<br><br><br><center>คุณได้ลงทะเบียนเรียบร้อยแล้ว <br>กรุณารอสักครู่</center>";
echo "<meta http-equiv=refresh content=3;URL=111.php>";
}
?>
|
|
|
|
|
Date :
2011-10-01 04:35:44 |
By :
ZerzaCub |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 00
|