|
|
|
ช่วยดูโค้ดให้หน่อยครับ บันทึกลงฐานข้อมูลไม่ได้ เป็นโค้ดของthaicreate ครับ เอามาเพิ่มฟิว |
|
|
|
|
|
|
|
รบกวนช่วยดูโค้ดให้ด้วยครับ ว่าทำไมเวลาบันทึกไปแล้ว มันบันทึกให้เฉพาะ q13 q14 q15 q16 q17 แต่ q18 q19 มันไม่ยอมบันทึกให้ครับ ได้เป็นค่าว่างอะครับ โค้ดเอามาจากเว็บนี้แหระครับ แค่เพิ่มต่อไปอีกสอง ฟิว แต่ว่ามันไม่บันทึกให้..
phpMySQLEditRecordForm.php
Code (PHP)
<html>
<head>
<title>ThaiCreate.Com PHP & MySQL Tutorial</title>
</head>
<body>
<form action="phpMySQLEditRecordSave.php?CusID=<?=$_GET["CusID"];?>" name="frmEdit" method="post">
<?
$objConnect = mysql_connect("localhost","root","1234") or die("Error Connect to Database");
$strSQL = "SELECT * FROM tb_assess WHERE id = '".$_GET["CusID"]."' ";
$objDB = mysql_select_db("db_assess");
$objQuery = mysql_query($strSQL);
$objResult = mysql_fetch_array($objQuery);
if(!$objResult)
{
echo "Not found CustomerID=".$_GET["CusID"];
}
else
{
?>
<table width="600" border="1">
<tr>
<th width="91"> <div align="center">CustomerID </div></th>
<th width="160"> <div align="center">Name </div></th>
<th width="198"> <div align="center">Email </div></th>
<th width="97"> <div align="center">CountryCode </div></th>
<th width="70"> <div align="center">Budget </div></th>
<th width="70"> <div align="center">new </div></th>
<th width="70"> <div align="center">new </div></th>
</tr>
<tr>
<td><div align="center"><input type="text" name="txtq13" size="5" value="<?=$objResult["q13"];?>"></div></td>
<td><input type="text" name="txtq14" size="20" value="<?=$objResult["q14"];?>"></td>
<td><input type="text" name="txtq15" size="20" value="<?=$objResult["q15"];?>"></td>
<td><div align="center"><input type="text" name="txtq16" size="2" value="<?=$objResult["q16"];?>"></div></td>
<td align="right"><input type="text" name="txtq17" size="5" value="<?=$objResult["q17"];?>"></td>
<td align="right"><input type="text" name="txtq18" size="5" value="<?=$objResult["q18"];?>"></td>
<td align="right"><input type="text" name="txtq18" size="5" value="<?=$objResult["q19"];?>"></td>
</tr>
</table>
<input type="submit" name="submit" value="submit">
<?
}
mysql_close($objConnect);
?>
</form>
</body>
</html>
phpMySQLEditRecordList.php
Code (PHP)
<html>
<head>
<title>ThaiCreate.Com PHP & MySQL Tutorial</title>
</head>
<body>
<?
$objConnect = mysql_connect("localhost","root","1234") or die("Error Connect to Database");
$objDB = mysql_select_db("db_assess");
$strSQL = "SELECT * FROM tb_assess";
$objQuery = mysql_query($strSQL) or die ("Error Query [".$strSQL."]");
?>
<table width="600" border="1">
<tr>
<th width="91"> <div align="center">CustomerID </div></th>
<th width="98"> <div align="center">Name </div></th>
<th width="198"> <div align="center">Email </div></th>
<th width="97"> <div align="center">CountryCode </div></th>
<th width="59"> <div align="center">Budget </div></th>
<th width="59"> <div align="center">new </div></th>
<th width="59"> <div align="center">new </div></th>
<th width="30"> <div align="center">Edit </div></th>
</tr>
<?
while($objResult = mysql_fetch_array($objQuery))
{
?>
<tr>
<td><div align="center"><?=$objResult["q13"];?></div></td>
<td><?=$objResult["q14"];?></td>
<td><?=$objResult["q15"];?></td>
<td><div align="center"><?=$objResult["q16"];?></div></td>
<td align="right"><?=$objResult["q17"];?></td>
<td align="right"><?=$objResult["q18"];?></td>
<td align="right"><?=$objResult["q18"];?></td>
<td align="center"><a href="phpMySQLEditRecordForm.php?CusID=<?=$objResult["id"];?>">Edit</a></td>
</tr>
<?
}
?>
</table>
<?
mysql_close($objConnect);
?>
</body>
</html>
phpMySQLEditRecordSave.php
Code (PHP)
<html>
<head>
<title>ThaiCreate.Com PHP & MySQL Tutorial</title>
</head>
<body>
<?
$objConnect = mysql_connect("localhost","root","1234") or die("Error Connect to Database");
$objDB = mysql_select_db("db_assess");
$strSQL = "UPDATE tb_assess SET ";
$strSQL .="q13 = '".$_POST["txtq13"]."' ";
$strSQL .=",q14 = '".$_POST["txtq14"]."' ";
$strSQL .=",q15 = '".$_POST["txtq15"]."' ";
$strSQL .=",q16 = '".$_POST["txtq16"]."' ";
$strSQL .=",q17= '".$_POST["txtq17"]."' ";
$strSQL .=",q17= '".$_POST["txtq18"]."' ";
$strSQL .=",q17= '".$_POST["txtq19"]."' ";
$strSQL .="WHERE id = '".$_GET["CusID"]."' ";
$objQuery = mysql_query($strSQL);
if($objQuery)
{
echo "Save Done.";
}
else
{
echo "Error Save [".$strSQL."]";
}
mysql_close($objConnect);
?>
</body>
</html>
Tag : PHP, MySQL
|
|
|
|
|
|
Date :
2012-09-18 21:57:02 |
By :
Beer_7 |
View :
917 |
Reply :
4 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
$strSQL .=",q17= '".$_POST["txtq17"]."' ";
$strSQL .=",q17= '".$_POST["txtq18"]."' ";
$strSQL .=",q17= '".$_POST["txtq19"]."' ";
อะแฮ่ม .. ตัวแปรมันผิดปล่าวหละครับ มันไปบันทึกที่ q17 หมดเลยเปลี่ยนเป็น
$strSQL .=",q17= '".$_POST["txtq17"]."' ";
$strSQL .=",q18= '".$_POST["txtq18"]."' ";
$strSQL .=",q19= '".$_POST["txtq19"]."' ";
|
|
|
|
|
Date :
2012-09-19 03:50:36 |
By :
deawx |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
โอ ขอบคุณครับ พี่deawx ตัวแปรผิด หลายตัวเลย ฮ่าๆๆ..
|
|
|
|
|
Date :
2012-09-19 09:01:28 |
By :
Beer_7 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Date :
2012-09-19 09:08:57 |
By :
tongspy |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ผมเจออีกอันนึง ตรง redirect page ผมใส่ค่าว่างไว้ มันไม่ยอมให้บันทึกสักที ต้องมาใส่หน้าที่จะให้มันredirectไป ถึงจะบันทึก ฮ่าๆ เขียนโปรแกรมนี้ก้อปวดหัวเหมือนกัน ..
|
|
|
|
|
Date :
2012-09-19 12:19:48 |
By :
Beer_7 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 01
|