|
|
|
จากฐานข้อมูลที่ให้ไป ช่วยเขียนไฟล์ edit ให้หน่อยค่ะ PHP, MySQL, |
|
|
|
|
|
|
|
ทำไม่ได้อ่าค่ะ ไม่รู้ว่าเปลี่ยนตัวแปล อ่ารัยบ้าง รบกวนช่วยเปลี่ยนให้หน่อนะค่ะ
|
|
|
|
|
Date :
2011-12-22 01:06:48 |
By :
วาซาบิ |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ตัวอย่างก็มีให้ดูครับ ทำได้ไม่ยากครับ
|
|
|
|
|
Date :
2011-12-22 06:30:44 |
By :
webmaster |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
อ่านดูก่อนซิครับ ตั้งแต่พื้นฐานเลย หัวข้อบนๆ อะ อ่านให้หมด ถ้าคุณคิดว่าทำไม่ได้ ไม่รู้เรื่อง แสดงว่าคุณไม่ได้ตั้งใจอ่านและทำความเข้าใจ มันไม่มีอะไรไม่เข้าสมองหรอกครับ ถ้าคุณตั้งใจจริงๆ ไว้ติดขัดจริงๆ จังๆ ไปไม่ได้ ค่อยมาถามกัน ต้องช่วยตัวเองก่อนนะครับ
|
|
|
|
|
Date :
2011-12-22 06:51:14 |
By :
ikikkok |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ลองศึกษาทำความเข้าใจ และลองเขียนโค้ดดูค่ะ ถ้าติดตรงไหนค่อยถาม จะอธิบายและช่วยแก้ error ให้
....ลองพยายามดูก่อน ไม่ยากหรอกค่ะ ^__^
|
|
|
|
|
Date :
2011-12-22 09:28:12 |
By :
kukkuk |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ก้อลองทำดูแล้วไงค่ะ ไม่รู้จะแก้ยังไงแล้ว เลยได้เข้ามาถามเนียแหละค่ะ ไม่ใช่ว่าไม่ได้ตั้งใจ
|
|
|
|
|
Date :
2011-12-22 12:05:55 |
By :
วาซาบิ |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
phpMySQLEditRecordList.php
Code (PHP)
<html>
<head>
<title>ThaiCreate.Com PHP & MySQL Tutorial</title>
</head>
<body>
<?
$host = "localhost";
$user = "root";
$passwd = "1234";
$dbname = "news";
mysql_connect($host,$user,$passwd) or die("ติดต่อ Host ไม่ได้");
mysql_select_db($dbname) or die("ติดต่อฐานข้อมูลไม่ได้");
mysql_query("SET NAMES UTF8");
$strSQL = "SELECT * FROM news";
$objQuery = mysql_query($strSQL) or die ("Error Query [".$strSQL."]");
?>
<table width="600" border="1">
<tr>
<th width="91"> <div align="center">ลำดับ </div></th>
<th width="98"> <div align="center">วันที่ </div></th>
<th width="198"> <div align="center">หัวข้อ </div></th>
<th width="97"> <div align="center">รายละเอียด </div></th>
<th width="59"> <div align="center">รูปภาพ </div></th>
<th width="30"> <div align="center">Edit </div></th>
</tr>
<?
while($objResult = mysql_fetch_array($objQuery))
{
?>
<tr>
<td><div align="center"><?=$objResult["id_new"];?></div></td>
<td><?=$objResult["date_new"];?></td>
<td><?=$objResult["head_new"];?></td>
<td><div align="center"><?=$objResult["detail_new"];?></div></td>
<td align="right"><?=$objResult["pic_new"];?></td>
<td align="center"><a href="phpMySQLEditRecordForm.php?id_new=<?=$objResult["id_new"];?>">Edit</a></td>
</tr>
<?
}
?>
</table>
<?
mysql_close();
?>
</body>
</html>
phpMySQLEditRecordForm.php
Code (PHP)
<html>
<head>
<title>ThaiCreate.Com PHP & MySQL Tutorial</title>
</head>
<body>
<form action="phpMySQLEditRecordSave.php?id_new=<?=$_GET["id_new"];?>" name="frmEdit" method="post">
<?
$host = "localhost";
$user = "root";
$passwd = "1234";
$dbname = "news";
$tblname = "news";
mysql_connect($host,$user,$passwd) or die("ติดต่อ Host ไม่ได้");
mysql_select_db($dbname) or die("ติดต่อฐานข้อมูลไม่ได้");
mysql_query("SET NAMES UTF8");
$strSQL = "SELECT * FROM news WHERE news= '".$_GET["id_new"]."' ";
$objQuery = mysql_query($strSQL);
$objResult = mysql_fetch_array($objQuery);
if(!$objResult)
{
echo "Not found id =".$_GET["id_new"];
}
else
{
?>
<table width="600" border="1">
<tr>
<th width="91"> <div align="center">ลำดับ </div></th>
<th width="160"> <div align="center">วันที่ </div></th>
<th width="198"> <div align="center">หัวเรื่องข่าว </div></th>
<th width="97"> <div align="center">รายละเอียดข่าว </div></th>
<th width="70"> <div align="center">รูปภาพ </div></th>
</tr>
<tr>
<td><div align="center"><input type="text" name="txtCustomerID" size="5" value="<?=$objResult["id_new"];?>"></div></td>
<td><input type="text" name="txtName" size="20" value="<?=$objResult["date_new"];?>"></td>
<td><input type="text" name="txtEmail" size="20" value="<?=$objResult["head_new"];?>"></td>
<td><div align="center"><input type="text" name="txtCountryCode" size="2" value="<?=$objResult["detail_new"];?>"></div></td>
<td align="right"><input type="text" name="txtBudget" size="5" value="<?=$objResult["pic_new"];?>"></td>
</tr>
</table>
<input type="submit" name="submit" value="submit">
<?
}
mysql_close();
?>
</form>
</body>
</html>
phpMySQLEditRecordSave.php
Code (PHP)
<html>
<head>
<title>ThaiCreate.Com PHP & MySQL Tutorial</title>
</head>
<body>
<?
$host = "localhost";
$user = "root";
$passwd = "1234";
$dbname = "news";
$tblname = "news";
mysql_connect($host,$user,$passwd) or die("ติดต่อ Host ไม่ได้");
mysql_select_db($dbname) or die("ติดต่อฐานข้อมูลไม่ได้");
mysql_query("SET NAMES UTF8");
$strSQL = "UPDATE news SET ";
$strSQL .="id_new = '".$_POST["id_new"]."' ";
$strSQL .=",date_new = '".$_POST["date_new"]."' ";
$strSQL .=",head_new = '".$_POST["head_new"]."' ";
$strSQL .=",detail_new = '".$_POST["detail_new"]."' ";
$strSQL .=",pic_new = '".$_POST["pic_new"]."' ";
$strSQL .="WHERE id_new = '".$_GET["id_new"]."' ";
$objQuery = mysql_query($strSQL);
if($objQuery)
{
echo "Save Done.";
}
else
{
echo "Error Save [".$strSQL."]";
}
mysql_close();
?>
</body>
</html>
|
|
|
|
|
Date :
2011-12-22 12:13:50 |
By :
วาซาบิ |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
insert ข้อมูล เข้าไปซักอันก่อนครับ
|
|
|
|
|
Date :
2011-12-22 12:14:25 |
By :
yogolas |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
พยายามครับ พยายาม เว็บนี้มีตัวอย่างเป็นร้อยเป็นพันให้ทำความเข้าใจ คุณแค่อ่านเยอะๆและทำตามอย่างบทเรียน ผมว่าไม่น่าจะมีปัญหาอะไรนะครับ
|
|
|
|
|
Date :
2011-12-22 12:33:38 |
By :
Dragons_first |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ไฟล์ phpMySQLEditRecordForm.php
WHERE news= '".$_GET["id_new"]."' ";
WHERE id_new= '".$_GET["id_new"]."' "; // เปลี่ยน news เป็น id_new
Code (PHP)
<html>
<head>
<title>ThaiCreate.Com PHP & MySQL Tutorial</title>
</head>
<body>
<form action="phpMySQLEditRecordSave.php?id_new=<?=$_GET["id_new"];?>" name="frmEdit" method="post">
<?
$host = "localhost";
$user = "root";
$passwd = "1234";
$dbname = "news";
$tblname = "news";
mysql_connect($host,$user,$passwd) or die("ติดต่อ Host ไม่ได้");
mysql_select_db($dbname) or die("ติดต่อฐานข้อมูลไม่ได้");
mysql_query("SET NAMES UTF8");
$strSQL = "SELECT * FROM news WHERE id_new= '".$_GET["id_new"]."' "; // เปลี่ยน news เป็น id_new
$objQuery = mysql_query($strSQL);
$objResult = mysql_fetch_array($objQuery);
if(!$objResult)
{
echo "Not found id =".$_GET["id_new"];
}
else
{
?>
<table width="600" border="1">
<tr>
<th width="91"> <div align="center">ลำดับ </div></th>
<th width="160"> <div align="center">วันที่ </div></th>
<th width="198"> <div align="center">หัวเรื่องข่าว </div></th>
<th width="97"> <div align="center">รายละเอียดข่าว </div></th>
<th width="70"> <div align="center">รูปภาพ </div></th>
</tr>
<tr>
<td><div align="center"><input type="text" name="txtCustomerID" size="5" value="<?=$objResult["id_new"];?>"></div></td>
<td><input type="text" name="txtName" size="20" value="<?=$objResult["date_new"];?>"></td>
<td><input type="text" name="txtEmail" size="20" value="<?=$objResult["head_new"];?>"></td>
<td><div align="center"><input type="text" name="txtCountryCode" size="2" value="<?=$objResult["detail_new"];?>"></div></td>
<td align="right"><input type="text" name="txtBudget" size="5" value="<?=$objResult["pic_new"];?>"></td>
</tr>
</table>
<input type="submit" name="submit" value="submit">
<?
}
mysql_close();
?>
</form>
</body>
</html>
|
|
|
|
|
Date :
2011-12-22 13:28:43 |
By :
yogolas |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 04
|