|
|
|
เวลากดปุ่ม delete แล้วมันไม่กลับมาหน้าเดีมคะ อยากไห้มัน refresh หน้าเดีมคืนทำไงคะ |
|
|
|
|
|
|
|
ขอลบกวนอีกคะ คือ ต้องกานเวลาที่กดปุ่ม delete แล้วอยากไห้ข้อมูนมันมันลบออก. อยากไห้มันอยู่หน้า form เดีม แต่ record ที่ถูกลบก็จะหายไปคะ แต่ code หนูนะเมี่อกด delete มันดันไปโช Record Deleted แล้วไม่กับมาหน้าเดีม คะ คือยากไห้มัน refresh หน้าเดีมคะ
ขอบคุญนะคะ...ไม่รู้ว่าเขียนไปจะอ่านได้ไหม
Code (PHP)
<!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>
<?
$objConnect = mysql_connect("localhost","root","root") or die("Error Connect to Database");
$objDB = mysql_select_db("mydatabase");
$strSQL = "DELETE FROM shortcode ";
$strSQL .="WHERE ShortcodeName = '".$_GET["ShortID"]."' ";
$objQuery = mysql_query($strSQL);
if($objQuery)
{
echo "Record Deleted.";
}
else
{
echo "Error Delete [".$strSQL."]";
}
mysql_close($objConnect);
?>
</body>
</html>
อีกคำถามนะคะ..
คือเวลาจะป้อนข้อมูลลง database คะ อยากไห้มีกานกวดสอบข้อมูลก่อนว่า ข้อมูลที่จะป้อนลงไปไหม่มีอยู่ไน table แล้วหลื ยัง ถ้ายังไห้ป้อนข้อมูลสำเล็ดแต่ถ้ามีข้อมูลเหมีอนกับตัวที่จะป้อนลงไปไหม่ ก็ไม่ไห้ป้อน
<!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>
<?
$objConnect = mysql_connect("localhost","root","root") or die("Error Connect to Database");
$objDB = mysql_select_db("mydatabase");
$name=$_POST['textShortcodeID']; // รับค่ามาจาก name ข้างบน
$q=mysql_query("select * from shortcode where ShortcodeName='$name' ");
$r=mysql_fetch_array($q);
if($r!=''){
echo "<script language='javascript'>alert('มีข้อมูลนี้ในดาต้าเบสแล้ว'); history.back(); </script>";
exit;
}
else {
$strSQL = "INSERT INTO shortcode";
$strSQL .="(ShortcodeName,Company,Effect_time,Expire_time,Tel) ";
$strSQL .="VALUES ";
$strSQL .="('".$_POST["textShortcodeName"]."','".$_POST["textCompany"]."','".$_POST["textEffectTime"]."' ";
$strSQL .=",'".$_POST["textExpireTime"]."','".$_POST["textTel"]."') ";
$objQuery = mysql_query($strSQL);
if($objQuery)
{
echo "Save Done.";
}
else
{
echo "Error Save [".$strSQL."]";
} }
mysql_close($objConnect);
?>
</body>
</html>
Tag : PHP, MySQL
|
|
|
|
|
|
Date :
2012-05-28 11:13:46 |
By :
Cat |
View :
1240 |
Reply :
5 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
เพิ่ม echo "<meta http-equiv='refresh' content='1; url=.......'>";
<!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>
<?
$objConnect = mysql_connect("localhost","root","root") or die("Error Connect to Database");
$objDB = mysql_select_db("mydatabase");
$strSQL = "DELETE FROM shortcode ";
$strSQL .="WHERE ShortcodeName = '".$_GET["ShortID"]."' ";
$objQuery = mysql_query($strSQL);
if($objQuery)
{
echo "Record Deleted.";
}
else
{
echo "Error Delete [".$strSQL."]";
}
mysql_close($objConnect);
echo "<meta http-equiv='refresh' content='1; url=...........'>";//เช่น index.php
?>
</body>
</html>
|
|
|
|
|
Date :
2012-05-28 11:32:10 |
By :
บู้ |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
แก้ตรง if($r!='') เป็น if(!$r=="") หรือ if($r==1)
ปล. โค้ดอ่านยากมาก ผิดพลาดประการใดก็ขออภัย
<!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>
<?
$objConnect = mysql_connect("localhost","root","root") or die("Error Connect to Database");
$objDB = mysql_select_db("mydatabase");
$name=$_POST['textShortcodeID']; // รับค่ามาจาก name ข้างบน
$q=mysql_query("select * from shortcode where ShortcodeName='$name' ");
$r=mysql_fetch_array($q);
if($r== 1){
echo "<script language='javascript'>alert('มีข้อมูลนี้ในดาต้าเบสแล้ว'); history.back(); </script>";
exit;
}
else {
$strSQL = "INSERT INTO shortcode";
$strSQL .="(ShortcodeName,Company,Effect_time,Expire_time,Tel) ";
$strSQL .="VALUES ";
$strSQL .="('".$_POST["textShortcodeName"]."','".$_POST["textCompany"]."','".$_POST["textEffectTime"]."' ";
$strSQL .=",'".$_POST["textExpireTime"]."','".$_POST["textTel"]."') ";
$objQuery = mysql_query($strSQL);
if($objQuery)
{
echo "Save Done.";
}
else
{
echo "Error Save [".$strSQL."]";
} }
mysql_close($objConnect);
?>
</body>
</html>
|
|
|
|
|
Date :
2012-05-28 11:48:22 |
By :
บู้ |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
history.back(); นี้มันังไม่เสถียรนะคะ เท่าที่เคยใช้มา เพราะำงานได้แค่ใน google chrome อย่างเดียว
|
|
|
|
|
Date :
2012-05-28 15:15:39 |
By :
tai_kook |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 05
|