|
|
|
สอบถามเกี่ยวกับการป้องกันการกด F5 หรือการรีเฟสแล้วเพิ่มข้อมูลเข้า Database |
|
|
|
|
|
|
|
Code (PHP)
header("location:URL.php");
ให้ redirect ไปซะ 1 ครั้งครับ
|
|
|
|
|
Date :
2014-11-21 12:16:10 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (PHP)
<?php
include "connect.php";
if(isset($_POST['submit'])){
$date=$_POST['date'];
$sql="INSERT INTO `TestWeb`.`test` (`test_id` ,`data_test`)VALUES (NULL , '$date');";
$result=mysql_query($sql) or die(mysql_error());
// คำสั่ง ของ admin ใส่ตรงนี้ครับ
header("location: index.php");
}
// ตรงนี้แค่แสดงผลอย่างเดียว
$trs='';
$sql_show="select * from test";
echo $sql_show;
$result_show=mysql_db_query($db,$sql_show) or die(mysql_error());
$i=1;
while($row_show=mysql_fetch_array($result_show)){
$trs .= "<tr><td>$i</td><td>$row_show[data_test]</td></tr>";
$i++;
}
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
</head>
<body>
<form method="post" action="index.php">
<input type="date" name="date" />
<input type="submit" name="submit" value="Save" />
</form>
<table>
<tr><td>ที่</td><td>วันที่</td></tr>
<?=$trs?>
</table>
</body>
</html>
|
ประวัติการแก้ไข 2014-11-21 12:37:32 2014-11-21 12:38:40
|
|
|
|
Date :
2014-11-21 12:37:10 |
By :
Chaidhanan |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ต้องขอขอบคุณ คุณ TC Admin และ คุณChaidhanan ด้วยครับที่ช่วยเหลือตลอดมา ตอนนี้ทำตามคำแนะนำได้แล้วครับ ขอบคุณครับ
|
|
|
|
|
Date :
2014-11-22 12:05:36 |
By :
udorn555 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 01
|