|
|
|
ช่วยผม! วิเคราะห์หน่อยคับว่าทำไม มันไม่ยอม ส่ง id GET มายังไฟล์ 2 ?? |
|
|
|
|
|
|
|
แก้เสร็จ กด ตกลง มัน ฟ้อง แบบนี้ครับ
ข้อมูลที่เหลือมันเข้าหมด เหมือนกับจะบอกว่า where id '' ไม่ยอมเข้า มาประมาณนี้หรือป่าว !?
Error Save [UPDATE tb_detail SET ,type = '1' ,desc = '
ssssssssssss
aaaaaaaaaaaaaaaaaaaaaaa
aaaa
' ,post = 'ssssss' WHERE id = '' ] <----- - - - สังเกตตรงนี้มันจะว่าง !!!!!!
edit_add.php
Code (PHP)
<?
$id_edit=$_GET[id_edit]; ///<---------------- สังเกตุตรงนี้ คือตัวส่งค่า น่ะครับ !!!!
include("fckeditor/fckeditor.php");
include"connect.php";
include "function.php";
$sql="select * from tb_detail where id ='$id_edit' ";
$result=mysql_db_query($dbname,$sql);
$r=mysql_fetch_array($result);
$id=$r[id];
$type=$r[type];
$desc=$r[desc];
$post=$r[post];
?>
<!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>::...Welcome::-ipoolsservice.CoM</title>
<link href="css/admin.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div align="center">
<div class="main">
<div id="box_baner"></div>
<div class="setfont" id="box_menu">
<?php
echo"<ul>";
include"madmin.php";
if($type<>$id)
{
for ($i=0;$i<count($cate);$i++)
{
echo "<Li>";
echo $cate[$i];
echo "</Li>";
echo "<ul>";
}
}
else
{
echo"ถูกปฏิเสธการเข้าถึง!";
}
?>
</div>
<div id="main2">
<div id="zone_l">
<div id="zone_l_1"><form action="edit_add2.php" method="post" ENCTYPE="multipart/form-data">
<table width="100%" border="0">
<tr>
<td width="154" height="39">ประเภทเนื้อหา</td>
<td width="858">
<SELECT NAME="txttype">
<OPTION VALUE='0'>ทุกหมวดหมู่</OPTION>
<?
for ($j=1;$j<count($typemd);$j++) {
if($type==$j)
{
echo"<OPTION VALUE='$j' SELECTED>$typemd[$j]</OPTION>";
}
else
{
echo "<OPTION VALUE='$j'>$typemd[$j]</OPTION>";
}
}
?>
</SELECT></td>
</tr>
<tr>
<td>รายละเอียดเนื้อหา</td>
<td><?php
$sBasePath = $_SERVER['PHP_SELF'] ;
$sBasePath = substr( $sBasePath, 0, strpos( $sBasePath, "_samples" ) ) ;
$oFCKeditor = new FCKeditor('txtdesc') ;
$oFCKeditor->BasePath = $sBasePath ;
$oFCKeditor->Value = $desc;
$oFCKeditor->Create () ; ?></td>
</tr>
<tr>
<td>โพสโดย</td>
<td><label>
<input name="txtpost" type="text" size="20" maxlength="50" value="<?=$post?>"/>
</label></td>
</tr>
<tr>
<td>Submit</td>
<td>
<input type="submit" name="submit" value="ยืนยัน" />
Reset
<input type="reset" name="reset" value="รีเซ็ท" /> </td>
</tr>
</table>
</form></div>
</div>
</div>
</div>
</div>
</body>
</html>
edit_add2.php
Code (PHP)
<?
//Desc เป็นคำสงวน ต้องใช้ `` ช่วย!!
/*session_start();
if ($_SESSION[sess_userid]<>session_id()) {
header( "Location: error.html"); exit();
}*/
$objConnect = mysql_connect("localhost","root","chaosiam") or die("Error Connect to Database");
$objDB = mysql_select_db("ipools");
$strSQL = "UPDATE tb_detail SET ";
$strSQL .=",type = '".$_POST["txttype"]."' ";
$strSQL .=",`desc` = '".$_POST["txtdesc"]."' ";
$strSQL .=",post = '".$_POST["txtpost"]."' ";
$strSQL .="WHERE id = '".$_GET["id_edit"]."' ";
$objQuery = mysql_query($strSQL);
if($objQuery)
{
echo "Save Done.";
}
else
{
echo "Error Save [".$strSQL."]";
}
mysql_close($objConnect);
?>
นั่งงมทั้งวัน แก้ไขแก้ไขมา ก็เหมือนเดิม คับ
ศึกษาจากลิงค์ นี้ครับ ขอขอบคุณ
https://www.thaicreate.com/php/php-mysql-update-edit-record.html
Tag : PHP
|
|
|
|
|
|
Date :
2012-01-13 18:20:12 |
By :
chaosiam |
View :
1087 |
Reply :
8 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
หน้าแรก แสดงค่า $id_edit=$_GET[id_edit]; ได้ยังครับ ลอง echo ดูก่อน ถ้าได้แล้ว
หน้า 2 ใช้เพื่อส่งค่าไปอีกหน้าครับ
<form action="edit_add2.php?edit=<?php echo $id_edit;?>" method="post" ENCTYPE="multipart/form-data">
หน้าจะได้ครับ
|
|
|
|
|
Date :
2012-01-13 18:37:14 |
By :
kongit7 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
แก้ใหม่ผมพิมพ์ตก อิอิ
<form action="edit_add2.php?id_edit=<?php echo $id_edit;?>" method="post" ENCTYPE="multipart/form-data">
|
|
|
|
|
Date :
2012-01-13 18:38:26 |
By :
kongit7 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ตรง address bar มันขึ้นแค่ edit_add2.php เฉยๆ เวลากด submit อ่ะคับ
มันไม่ขึ้น id อะไรเลยคับ !!
|
|
|
|
|
Date :
2012-01-13 18:45:42 |
By :
chaosiam |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
มันเข้าแล้วครับ แต่ทำไม มันไม่ยอมให้ผ่าน เลยอ่ะ
http://localhost/ipoolsservice/edit_add2.php?id_edit=25
Error Save [UPDATE tb_detail SET ,type = '1' ,desc = '
ssssssssssss
dddd
' ,post = 'ssssss' WHERE id = '25' ]
แต่มันไม่ผ่าน มันนจะเป็น
Save Done น่ะ !!
|
|
|
|
|
Date :
2012-01-13 18:55:19 |
By :
chaosiam |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ตามนี้แล้วถ้ายังไม่ได้ ลองดูดีๆว่า browser จำค่าเก่าอยู่หรือป้าวหรือเปิด browser ตัวอื่นดู เพราะถ้าไม่ได้อย่างน้อยต้อง มี ?id_edit= อยู่หลังบ้างแหละ.. ลองดูดีๆครับ
Code (PHP)
<?
$id_edit=$_GET[id_edit]; ///<---------------- สังเกตุตรงนี้ คือตัวส่งค่า น่ะครับ !!!!
include("fckeditor/fckeditor.php");
include"connect.php";
include "function.php";
$sql="select * from tb_detail where id ='$id_edit' ";
$result=mysql_db_query($dbname,$sql);
$r=mysql_fetch_array($result);
$id=$r[id];
$type=$r[type];
$desc=$r[desc];
$post=$r[post];
?>
<!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>::...Welcome::-ipoolsservice.CoM</title>
<link href="css/admin.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div align="center">
<div class="main">
<div id="box_baner"></div>
<div class="setfont" id="box_menu">
<?php
echo"<ul>";
include"madmin.php";
if($type<>$id)
{
for ($i=0;$i<count($cate);$i++)
{
echo "<Li>";
echo $cate[$i];
echo "</Li>";
echo "<ul>";
}
}
else
{
echo"ถูกปฏิเสธการเข้าถึง!";
}
?>
</div>
<div id="main2">
<div id="zone_l">
<div id="zone_l_1"><form action="edit_add2.php?id_edit=<?php echo $id_edit;?>" method="post" ENCTYPE="multipart/form-data">
<table width="100%" border="0">
<tr>
<td width="154" height="39">ประเภทเนื้อหา</td>
<td width="858">
<SELECT NAME="txttype">
<OPTION VALUE='0'>ทุกหมวดหมู่</OPTION>
<?
for ($j=1;$j<count($typemd);$j++) {
if($type==$j)
{
echo"<OPTION VALUE='$j' SELECTED>$typemd[$j]</OPTION>";
}
else
{
echo "<OPTION VALUE='$j'>$typemd[$j]</OPTION>";
}
}
?>
</SELECT></td>
</tr>
<tr>
<td>รายละเอียดเนื้อหา</td>
<td><?php
$sBasePath = $_SERVER['PHP_SELF'] ;
$sBasePath = substr( $sBasePath, 0, strpos( $sBasePath, "_samples" ) ) ;
$oFCKeditor = new FCKeditor('txtdesc') ;
$oFCKeditor->BasePath = $sBasePath ;
$oFCKeditor->Value = $desc;
$oFCKeditor->Create () ; ?></td>
</tr>
<tr>
<td>โพสโดย</td>
<td><label>
<input name="txtpost" type="text" size="20" maxlength="50" value="<?=$post?>"/>
</label></td>
</tr>
<tr>
<td>Submit</td>
<td>
<input type="submit" name="submit" value="ยืนยัน" />
Reset
<input type="reset" name="reset" value="รีเซ็ท" /> </td>
</tr>
</table>
</form></div>
</div>
</div>
</div>
</div>
</body>
</html>
|
|
|
|
|
Date :
2012-01-13 18:57:02 |
By :
kongit7 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ใช้ครับ มันจำค่าเก่าไ้ว้ รีเฟรช ก็มา id มันขึ้นแล้วคับ แต่มันไม่ไปให้ มันฟ้อง error น่ะคับ
http://localhost/ipoolsservice/edit_add2.php?id_edit=25
Error Save [UPDATE tb_detail SET ,type = '1' ,desc = '
ssssssssssss
dddd
' ,post = 'ssssss' WHERE id = '25' ]
แต่มันไม่ผ่าน มันนจะเป็น
Save Done น่ะ !!
|
|
|
|
|
Date :
2012-01-13 19:02:02 |
By :
chaosiam |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ฟิวนี้ desc ชนิดข้อมูลเป็นอะไรครับ ( DESC มันเป็นคำสงวนของ sql มัยครับ ไว้สำหรับ เรียงข้อมูลจากมากไปน้อย)
`desc`
ลองเอา ` ออกดูครับ ถ้าไม่ได้ก็ลองเปลี่้ยนชื่อฟิวดู
|
|
|
|
|
Date :
2012-01-13 19:07:27 |
By :
kongit7 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ok ครับ ขอบคุณมากๆครับ เสีย รู้ มาตั้งนาน มีmr.winเขาบอก น่ะคับ เดียว จะลองทำดูคับ ขอบคุณทุกๆมากๆคับ
|
|
|
|
|
Date :
2012-01-13 19:15:18 |
By :
chaosiam |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 01
|