|
|
|
ไม่สามารถลบ และแก้ไขข้อมูลที่ดึงจาก Search ได้ครับ |
|
|
|
|
|
|
|
ไม่สามารถลบ และแก้ไขข้อมูลที่ดึงจาก Search ได้ครับ
Code (PHP)
<tr bgcolor="<?=$bg?>">
<td><div align="center"><?=$a;?></div></td>
<td><?=mssql_result($objQuery,$i,"ph_tel1");?></td>
<td><?=mssql_result($objQuery,$i,"ph_tel2");?></td>
<td><div><?=mssql_result($objQuery,$i,"ph_name");?></div></td>
<td><?=mssql_result($objQuery,$i,"ph_type");?></td>
<td><?=mssql_result($objQuery,$i,"ph_add");?></td>
<td align="center"><a href="pharmacy_edit.php?ph_1=<?=$objResult["ph_id"];?>"><img src="edit.gif" alt="แก้ไข"></a></td>
<td align="center"><a href="JavaScript:if(confirm('Confirm Delete?')==true){window.location='pharmacy_delete.php?ph_1=
<?=$objResult["ph_id"];?>';}"><img src="delete.gif" alt="ลบ"></a></td>
</tr>
ผลลัพธ์คือ Not found oil_id=
Tag : PHP, Ms SQL Server 2008
|
|
|
|
|
|
Date :
2011-06-10 11:16:42 |
By :
MyZeus |
View :
979 |
Reply :
16 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
คำสั่ง sql ได้ดึง id มาเปล่าครับ
echo $objResult["ph_id"]; ว่ามีข้อมูลเปล่า
|
|
|
|
|
Date :
2011-06-10 11:22:00 |
By :
avsqlz |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
คือแก้ไขได้ครับเป็นปกติ แต่ใส่แก้ไขดึงจากที่ Search ไม่ได้
|
|
|
|
|
Date :
2011-06-10 13:00:07 |
By :
MyZeus |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอขุดขึ้นมา ขอความช่วยเหลือหน่อยครับ
|
|
|
|
|
Date :
2011-06-10 21:55:27 |
By :
MyZeus |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ให้โค๊ดมาแค่นั้น หาไม่เจอหรอกครับ ข้างบนก็พยายามกันแล้ว
ให้รายละเอียดอีกนิดนึง ไม่ต้องหวงรายละเอียดครับ เดี๋ยวไม่เสร็จ
|
|
|
|
|
Date :
2011-06-10 22:49:24 |
By :
PlaKriM |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
นี่ครับ ช่วยทีนะครับ ขอบคุณครับ
Code (PHP)
<?
include("connect.inc");
?>
<form name="frmSearch" method="get" action="<?=$_SERVER['SCRIPT_NAME'];?>">
<center><table width="599" border="1">
<tr>
<th>Search
<input name="txtKeyword" type="text" id="txtKeyword" value="<?=$_GET["txtKeyword"];?>">
<input type="submit" value="Search"> ใส่ชื่อธุรกิจ หรือเบอร์โทรศัพท์</th>
</tr>
</table></center>
</form>
<?
if($_GET["txtKeyword"] != "")
{
//$objConnect = mssql_connect("localhost","sa","") or die("Error Connect to Database");
//$objDB = mssql_select_db("mydatabase");
// Search By Name or Email
$strSQL = "SELECT * FROM pharmacy WHERE (ph_name LIKE '%".$_GET["txtKeyword"]."%' or ph_tel1 LIKE '%".$_GET["txtKeyword"]."%' or ph_hotline LIKE '%".$_GET["txtKeyword"]."%' ) ";
$objQuery = mssql_query($strSQL) or die ("Error Query [".$strSQL."]");
$Num_Rows = mssql_num_rows($objQuery);
$Per_Page = 15; // Per Page
$Page = $_GET["Page"];
if(!$_GET["Page"])
{
$Page=1;
}
$Prev_Page = $Page-1;
$Next_Page = $Page+1;
$Page_Start = (($Per_Page*$Page)-$Per_Page);
if($Num_Rows<=$Per_Page)
{
$Num_Pages =1;
}
else if(($Num_Rows % $Per_Page)==0)
{
$Num_Pages =($Num_Rows/$Per_Page) ;
}
else
{
$Num_Pages =($Num_Rows/$Per_Page)+1;
$Num_Pages = (int)$Num_Pages;
}
$Page_End = $Per_Page * $Page;
IF ($Page_End > $Num_Rows)
{
$Page_End = $Num_Rows;
}
?>
<table border="0" class="style">
<tr bgcolor="blue" border="0">
<th width="50" align="center">ลำดับ</th>
<th width="150" align="center">หมายเลขโทรศัพท์</th>
<th width="150"align="center">ต่อ</th>
<th width="150"align="center">ชื่อธุรกิจ</th>
<th width="150"align="center">ประเภทของธุรกิจที่ดำเนินการ</th>
<th width="150"align="center">ที่อยู่</th>
<th width="150"align="center">จังหวัด</th>
<th width="150"align="center">อีเมล์</th>
<th width="150"align="center">เว็บ</th>
<th width="150"align="center">สายด่วน</th>
<th width="150"align="center">หมวดธุรกิจ</th>
<th width="150"align="center">ความนิยม</th>
<th width="100" colspan="2"align="center"></th>
</tr>
<?
$a=1;
for($i=$Page_Start;$i<$Page_End;$i++)
{
?>
<?if($bg == "white")
{
$bg = "#CCCCCC";
} else {
$bg = "white";
}
?>
<tr bgcolor="<?=$bg?>">
<td><div align="center"><?=$a;?></div></td>
<td><?=mssql_result($objQuery,$i,"ph_tel1");?></td>
<td><?=mssql_result($objQuery,$i,"ph_tel2");?></td>
<td><div><?=mssql_result($objQuery,$i,"ph_name");?></div></td>
<td><?=mssql_result($objQuery,$i,"ph_type");?></td>
<td><?=mssql_result($objQuery,$i,"ph_add");?></td>
<td><?=mssql_result($objQuery,$i,"ph_province");?></td>
<td><?=mssql_result($objQuery,$i,"ph_mail");?></td>
<td><?=mssql_result($objQuery,$i,"ph_web");?></td>
<td><?=mssql_result($objQuery,$i,"ph_hotline");?></td>
<td><?=mssql_result($objQuery,$i,"ph_busi");?></td>
<td><?=mssql_result($objQuery,$i,"ph_rate");?></td>
<td align="center"><a href="pharmacy_edit.php?ph_1=<?=$objResult["ph_id"];?>"><img src="edit.gif" alt="แก้ไข"></a></td>
<td align="center"><a href="JavaScript:if(confirm('Confirm Delete?')==true){window.location='pharmacy_delete.php?ph_1=
<?=$objResult["ph_id"];?>';}"><img src="delete.gif" alt="ลบ"></a></td>
</tr>
<?
$a=$a+1;
}
?>
</table>
<br>
มีทั้งหมด <?= $Num_Rows;?> ข้อมูล: <?=$Num_Pages;?> Page :
<?
if($Prev_Page)
{
echo " <a href='$_SERVER[SCRIPT_NAME]?Page=$Prev_Page&txtKeyword=$_GET[txtKeyword]'><< Back</a> ";
}
for($i=1; $i<=$Num_Pages; $i++){
if($i != $Page)
{
echo "[ <a href='$_SERVER[SCRIPT_NAME]?Page=$i&txtKeyword=$_GET[txtKeyword]'>$i</a> ]";
}
else
{
echo "<b> $i </b>";
}
}
if($Page!=$Num_Pages)
{
echo " <a href ='$_SERVER[SCRIPT_NAME]?Page=$Next_Page&txtKeyword=$_GET[txtKeyword]'>Next>></a> ";
}
mssql_close($objConnect);
}
?>
<?
//$objConnect = mssql_connect("TOPVIEWPOINT-PC","sa","1234") or die("Error Connect to Database");
//$objDB = mssql_select_db("callcenter");
$strSQL = "SELECT * FROM pharmacy";
$objQuery = mssql_query($strSQL) or die ("Error Query [".$strSQL."]");
?>
<form method="POST" action="#">
<a href="db_pharmacy.php"><img src="insert.gif" alt="เพิ่ม"></a>
<table border="0" cellspacing="1" class="style">
<tr bgcolor="blue" border="0">
<th width="50" align="center">ลำดับ</th>
<th width="150" align="center">หมายเลขโทรศัพท์</th>
<th width="150"align="center">ต่อ</th>
<th width="150"align="center">ชื่อธุรกิจ</th>
<th width="150"align="center">ประเภทของธุรกิจที่ดำเนินการ</th>
<th width="150"align="center">ที่อยู่</th>
<th width="150"align="center">จังหวัด</th>
<th width="150"align="center">อีเมล์</th>
<th width="150"align="center">เว็บ</th>
<th width="150"align="center">สายด่วน</th>
<th width="150"align="center">หมวดธุรกิจ</th>
<th width="150"align="center">ความนิยม</th>
<th width="100" colspan="2"align="center"></th>
</tr>
<?
$i=1;
while($objResult = mssql_fetch_array($objQuery))
{
?>
<?if($bg == "white")
{
$bg = "#CCCCCC";
} else {
$bg = "white";
}
?>
<tr bgcolor="<?=$bg?>">
<td align="center"><?=$i;?></td>
<td><?=$objResult["ph_tel1"];?></td>
<td><?=$objResult["ph_tel2"];?></td>
<td><?=$objResult["ph_name"];?></td>
<td><?=$objResult["ph_type"];?></td>
<td><?=$objResult["ph_add"];?></td>
<td><?=$objResult["ph_province"];?></td>
<td><?=$objResult["ph_mail"];?></td>
<td><?=$objResult["ph_web"];?></td>
<td><?=$objResult["ph_hotline"];?></td>
<td><?=$objResult["ph_busi"];?></td>
<td><?=$objResult["ph_rate"];?></td>
<td align="center"><a href="pharmacy_edit.php?ph_1=<?=$objResult["ph_id"];?>"><img src="edit.gif" alt="แก้ไข"></a></td>
<td align="center"><a href="JavaScript:if(confirm('Confirm Delete?')==true){window.location='pharmacy_delete.php?ph_1=
<?=$objResult["ph_id"];?>';}"><img src="delete.gif" alt="ลบ"></a></td>
</tr>
<?
$i=$i+1;
}
?>
</table>
</form>
<?
mssql_close($objConnect);
?>
|
|
|
|
|
Date :
2011-06-10 23:00:45 |
By :
MyZeus |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ดึงจาก search คือข้างบนใช่ไหมครับ ของมครั้งแรกละกัน
<td><?=mssql_result($objQuery,$i,"ph_busi");?></td>
<td><?=mssql_result($objQuery,$i,"ph_rate");?></td>
<td align="center"><a href="pharmacy_edit.php?ph_1=<?=$objResult["ph_id"];?>"><img src="edit.gif" alt="แก้ไข"></a></td>
<td align="center"><a href="JavaScript:if(confirm('Confirm Delete?')==true){window.location='pharmacy_delete.php?ph_1=
<?=$objResult["ph_id"];?>';}"><img src="delete.gif" alt="ลบ"></a></td>
เห็นความแตกต่างไหมครับ ว่าน่าจะผิดเพราะอะไร
|
|
|
|
|
Date :
2011-06-10 23:06:36 |
By :
PlaKriM |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
คือตารางที่ดึงจากฐานข้อมูลลบ และแก้ไขได้ปกติครับ แต่ตารางที่ดึงข้อมูลจาก Search ไม่สามารถลบ และแก้ไขได้ครับ
|
|
|
|
|
Date :
2011-06-11 11:04:04 |
By :
MyZeus |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
คุณดูที่ผมทำตัวหนาไว้ให้ยังอะครับ
|
|
|
|
|
Date :
2011-06-11 11:22:17 |
By :
PlaKriM |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ดูแล้วครับ
1. จากตาราง Search เรียกมาแล้วลบ และแก้ไขไม่ได้ครับ
2. จากตารางที่ดึงจากฐานข้อมูลมาโชว์ สามารถทำการลบ และแก้ไขได้ครับ
|
|
|
|
|
Date :
2011-06-11 12:11:17 |
By :
MyZeus |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
--"
คุณมาบอกแค่ไม่ได้นั่นแหละครับ บอกด้วยครับ ว่าไปแก้ไขยังไงมา ถึงไม่ได้ บอกแค่ไม่ได้ ไม่มีใครเดาได้ครับว่าคุณไปทำยังไงมา แก้ถูกหรือเปล่า นี่ผมแค่เดาตอบข้อแรกนะครับ มันต้องงมเรื่อยๆ เนื่องจากคำถามมันไม่ชัดเจนว่า เกิดอะไรขึ้น ขั้นตอนการทำงานเป็นไง โค๊ดอยู่ไหนที่ว่า search (แต่ผมเดาแล้วว่าตรงที่ผมบอกนั่นแหละ)
อธิบายนิดนึงครับ บอกแค่ไม่ได้ บอกตรงๆ ว่าไปไม่เป็น
|
|
|
|
|
Date :
2011-06-11 13:08:14 |
By :
PlaKriM |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ก็คือในส่วนที่ค้นหาข้อมูลออกมาอะครับ เมื่อค้นหาข้อมูลออกมา ผมได้ตั้งลิงค์แก้ไข และลบไว้ด้านหลัง แล้วผมก็กดแก้ไข และลบ มันขึ้นว่า Not found ph_id= เหมือนมันหาตัว Primary Key ของฟิวส์นั้นไม่เจออะครับ
แต่ว่า ในส่วนข้างล่างผมโชว์ดึงจากฟิวส์ข้อมูลซึ่งต่อท้าย Table Search มันสามารถลบ และไก้ไขได้ตามปกติ
|
ประวัติการแก้ไข 2011-06-11 13:30:54
|
|
|
|
Date :
2011-06-11 13:28:05 |
By :
MyZeus |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
คือมันไม่ยอมเด้งไม่หน้าแก้ไขครับ ขึ้นว่า Not found ph_id= เฉลยเลยดีกว่าไหมครับ ผมแก้ไม่ได้จริงๆ
|
|
|
|
|
Date :
2011-06-11 14:01:16 |
By :
MyZeus |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
โอเคผมยอมแพ้ละ คราวหลังพยายามสังเกตุและกลัีบไปอ่านพื้นฐานด้วยนะครับ อันนึงใช้ mssql_result แต่อันนึงไม่ใช้
<td><?=mssql_result($objQuery,$i,"ph_busi");?></td>
<td><?=mssql_result($objQuery,$i,"ph_rate");?></td>
<td align="center"><a href="pharmacy_edit.php?ph_1=<?=mssql_result($objQuery,$i,"ph_id");?>"><img src="edit.gif" alt="แก้ไข"></a></td>
<td align="center"><a href="JavaScript:if(confirm('Confirm Delete?')==true){window.location='pharmacy_delete.php?ph_1=
<?=mssql_result($objQuery,$i,"ph_id");?>';}"><img src="delete.gif" alt="ลบ"></a></td>
|
|
|
|
|
Date :
2011-06-11 14:20:56 |
By :
PlaKriM |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ได้แล้วครับ ขอบคุณครับ อยากจะกด Like หลายๆครั้ง
|
|
|
|
|
Date :
2011-06-11 15:07:47 |
By :
MyZeus |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 04
|