|
|
|
php เปิดหน้าใหม่เองโดยไม่ต้องกด link ทำอย่างไรค่ะใครทราบรบกวนช่วยตอบด้วยค่ะ |
|
|
|
|
|
|
|
ต่ออีกนิดค่ะ พร้อมกับส่งค่าไปหน้าที่เปิดขึ้นมาใหม่ด้วยค่ะ ขอขอบคุณล่วงหน้าค่ะ สำหรับคนที่ช่วยตอบกระทู้นี้
|
|
|
|
|
Date :
2012-10-09 23:19:37 |
By :
benze240 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
จา Redilect หรือครับ
อธิบายเครียอีกนิดครับผม ว่าจะทำอะไร เพื่ออะไร
|
|
|
|
|
Date :
2012-10-10 08:59:03 |
By :
Ex-[S]i[L]e[N]t |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
คืออย่างนี้ค่ะ หลังจากกด link เพื่อ update ข้อมูล เสร็จแล้ว ก็ให้เปิดหน้าใหม่เพิ่มขึ้นอีกหน้า โดยส่งข้อมูลไปด้วย เพื่อไปselect database ในหน้านั้น
|
|
|
|
|
Date :
2012-10-10 09:34:58 |
By :
ben |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
เมื่อ update ข้อมูลเสร็จก็ให้สั่ง
<meta http-equiv=refresh content=0;URL=หน้าที่ต้องการให้เปิด.php?id= id ที่ต้องการให้แสดงในหน้าใหม่>
|
ประวัติการแก้ไข 2012-10-10 09:43:37
|
|
|
|
Date :
2012-10-10 09:42:54 |
By :
noomthapla |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (PHP)
<html>
<head>
<title>ThaiCreate.Com PHP & MySQL Tutorial</title>
</head>
<body>
<?
$objConnect = mysql_connect("localhost","root","root") or die("Error Connect to Database");
$objDB = mysql_select_db("mydatabase");
$strSQL = "UPDATE customer SET ";
$strSQL .="CustomerID = '".$_POST["txtCustomerID"]."' ";
$strSQL .=",Name = '".$_POST["txtName"]."' ";
$strSQL .=",Email = '".$_POST["txtEmail"]."' ";
$strSQL .=",CountryCode = '".$_POST["txtCountryCode"]."' ";
$strSQL .=",Budget = '".$_POST["txtBudget"]."' ";
$strSQL .=",Used = '".$_POST["txtUsed"]."' ";
$strSQL .="WHERE CustomerID = '".$_GET["CusID"]."' ";
$objQuery = mysql_query($strSQL);
if($objQuery)
{
echo "Save Done.";
echo "<meta http-equiv='Content-Type' content='text/html; charset=utf-8' />";
echo "<script language='javascript'>alert('Save Done.');</script>";
echo "<meta http-equiv='refresh' content='0;URL=file_name.php?id=".$_GET['id']."'>";
}
else
{
echo "Error Save [".$strSQL."]";
echo "<meta http-equiv='Content-Type' content='text/html; charset=utf-8' />";
echo "<script language='javascript'>alert('Error Save.');</script>";
echo "<meta http-equiv='refresh' content='0;URL=file_name.php?id=".$_GET['id']."'>";
}
mysql_close($objConnect);
?>
</body>
</html>
ประมาณนี้หรือป่าว..
|
|
|
|
|
Date :
2012-10-10 10:41:48 |
By :
pokultra |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
window.location ไปหน้าที่เราต้องการ ได้เลย
|
|
|
|
|
Date :
2012-10-10 11:45:26 |
By :
Joe_Dev |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอบคุณค่ะ เดี๋ยวของลองทำดูก่อนค่ะ
|
|
|
|
|
Date :
2012-10-10 12:56:35 |
By :
ben |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 04
|