|
|
|
กดบันทึกลงดาต้าเบสแล้วข้อมูลหายครับ จะทำไงไม่ให้มันหายครับ |
|
|
|
|
|
|
|
ปกติหน้ากรอกข้อมูล ผมเป็น 1.php
Code (PHP)
<input type="button" value="ºÑ¹·Ö¡Å§ DATABASE" onClick="this.form.action='http://192.168.0.4/kumpai/add_1.php'; submit() ">
ผมส่งค่าไปยัง add_1.php
พอผมกดบันทึกปับ มันขึ้น complete แต่ข้อมูลที่กรอกไปหายครับ ทำยังไงจะให้มันอยู่เหมือนเดิมครับ
Code (PHP)
<?php
include ('config.inc.php');
$strSQL = "INSERT INTO detail_6 ";
$strSQL .="(ContractNumberRES,PolicyNumber,CMIPolicyNumber,RecordGUIDRs,TransactionResponseDt,TransactionResponseTime,MessageCd
,ErrorMessage,LinkPolicy) ";
$strSQL .="VALUES ";
$strSQL .="('".$_POST["ContractNumberRES"]."','".$_POST["PolicyNumber"]."','".$_POST["CMIPolicyNumber"]."',
'".$_POST["RecordGUIDRs"]."','".$_POST["TransactionResponseDt"]."'";
$strSQL .=",'".$_POST["TransactionResponseTime"]."','".$_POST["MessageCd"]."','".$_POST["ErrorMessage"]."'";
$strSQL .=",'".$_POST["LinkPolicy"]."')";
//echo $strSQL; die();
$objQuery = mysql_query($strSQL) or die(mysql_error());
$strID_run = mysql_insert_id();
if($objQuery)
{
echo "<script language='javascript'>alert('complete');history.back();window.location='http://192.168.0.4/kumpai/SendISUZU1.html';</script>";
}
else
{
echo "Error Save [".$strSQL."]";
}
mysql_close();
?>
Tag : PHP, MySQL
|
|
|
|
|
|
Date :
2016-04-28 11:39:10 |
By :
woraman |
View :
849 |
Reply :
2 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
มันเหมือนการ Refresh ถ้าจะเก็บอาจจะต้องใช้ Session เข้ามาช่วยครับ
|
|
|
|
|
Date :
2016-04-28 11:47:32 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 04
|