|
|
|
นำ code แบ่งหน้าค้นหา แก้ไข เพิ่ม ลบ มารวมกันและมีปัญหา แก้ไขไม่ได้คะ |
|
|
|
|
|
|
|
สวัสดีคะ
จาก code ได้เอา code สำหรับ แบ่งหน้าและค้นหา มารวมกับ code ที่ เพิ่มลบแก้ไขในหน้าเดียวค่ะ
พอ เอา code มารวมกันแล้ว สามารถค้นหาได้ แต่
1. ไม่สามารถแก้ไข หรือเพิ่ม ได้คะ
2.เวลาแก้ไข ไม่จะไปที่แถว ไม่ไปตามที่เรากดค้นหาและแบ่งหน้าคะ เช่น แก้ไขบันทัดที่ 80 มันจะไปที่ 80 แต่ ในหน้านั้น เมื่อค้นหาแล้ว มีเพียง 10 แถวคะ
ช่วยดู code ให้ด้วยนะคะ
Code (PHP)
<?php
$objConnect = mysql_connect("localhost","root","12345678") or die("Error Connect to Database");
$objDB = mysql_select_db("mB");
date_default_timezone_set('Asia/Bangkok');
mysql_query("SET character_set_results=utf8");
mysql_query("SET character_set_client=utf8");
mysql_query("SET character_set_connection=utf8");
//*** Add Condition ***//
if($_POST["hdnCmd"] == "Add")
{
$tmp = date('Y-m-d');
$strSQL = "INSERT INTO rental_area ";
$strSQL .="(RentalAreaID,NoCode,Zone,Width,length,Size,AreaStatusID,EditDate,EditTime,other) ";
$strSQL .="VALUES ";
$strSQL .="('".$_POST["txtAddRentalAreaID"]."','".$_POST["txtAddNoCode"]."','".$_POST["txtAddZone"]."' ";
$strSQL .=",'".$_POST["txtAddWidth"]."','".$_POST["txtAddlength"]."','".$_POST["txtAddSize"]."' ";
$strSQL .=",'".$_POST["txtAddAreaStatusID"]."','".date("Y-m-d")."','".date("H:i:s")."','".$_POST["txtAddother"]."') ";
$objQuery = mysql_query($strSQL);
if(!$objQuery)
{
echo "Error Save [".mysql_error()."]";
}
//header("location:$_SERVER[PHP_SELF]");
//exit();
}
//*** Update Condition ***//
if($_POST["hdnCmd"] == "Update")
{
$strSQL = "UPDATE rental_area SET ";
$strSQL .="RentalAreaID = '".$_POST["txtEditRentalAreaID"]."' ";
$strSQL .=",NoCode = '".$_POST["txtEditNoCode"]."' ";
$strSQL .=",Zone = '".$_POST["txtEditZone"]."' ";
$strSQL .=",Width = '".$_POST["txtEditWidth"]."' ";
$strSQL .=",length = '".$_POST["txtEditlength"]."' ";
$strSQL .=",Size = '".$_POST["txtEditSize"]."' ";
//$strSQL .=",HouseRegistrationID = '".$_POST["txtEditHouseRegistrationID"]."' ";
//$strSQL .=",CustomerID = '".$_POST["txtEditCustomerID"]."' ";
$strSQL .=",AreaStatusID = '".$_POST["txtEditAreaStatusID"]."' ";
//$strSQL .=",Note = '".$_POST["txtEditNote"]."' ";
$strSQL .=",EditDate = '".date("Y-m-d")."' ";
$strSQL .=",EditTime = '".date("H:i:s")."' ";
$strSQL .=",other = '".$_POST["txtEditother"]."' ";
$strSQL .="WHERE RentalAreaID = '".$_POST["hdnEditRentalAreaID"]."' ";
$objQuery = mysql_query($strSQL);
if(!$objQuery)
{
echo "Error Update [".mysql_error()."]";
}
//header("location:$_SERVER[PHP_SELF]");
//exit();
}
//*** Delete Condition ***//
if($_GET["Action"] == "Del")
{
$strSQL = "DELETE FROM rental_area ";
$strSQL .="WHERE RentalAreaID = '".$_GET["CusID"]."' ";
$objQuery = mysql_query($strSQL);
if(!$objQuery)
{
echo "Error Delete [".mysql_error()."]";
}
//header("location:$_SERVER[PHP_SELF]");
//exit();
}
?>
<!-- Page customer_payment-->
<section class="forms" style="font-size:12px;">
<div class="container-fluid">
<div class="row">
<div class="col-lg-12">
<div class="card">
<div class="card-header d-flex align-items-center">
<!-- $strSQL = "SELECT rental_area.*,area_status.* FROM rental_area
LEFT JOIN area_status ON rental_area.AreaStatusID = area_status.AreaStatusID ";
-->
<form name="frmSearch" method="get" action="<?php echo $_SERVER['SCRIPT_NAME'];?>">
<table width="599" border="1">
<tr>
<th>Keyword
<?php /*?><input name="txtKeyword" type="text" id="txtKeyword" value="<?php echo $_GET["txtKeyword"];?>"><?php */?>
<select name="txtKeyword" id="txtKeyword">
<option>- Select -</option>
<option value="1" <?if($_POST["txtKeyword"]=="1"){echo"selected";}?>>1</option>
<option value="2" <?if($_POST["txtKeyword"]=="2"){echo"selected";}?>>2</option>
<option value="3" <?if($_POST["txtKeyword"]=="3"){echo"selected";}?>>3</option>
<option value="4" <?if($_POST["txtKeyword"]=="4"){echo"selected";}?>>4</option>
<option value="5" <?if($_POST["txtKeyword"]=="5"){echo"selected";}?>>5</option>
<option value="6" <?if($_POST["txtKeyword"]=="6"){echo"selected";}?>>6</option>
<option value="7" <?if($_POST["txtKeyword"]=="7"){echo"selected";}?>>7</option>
</select>
<input type="submit" value="Search"></th>
</tr>
</table>
</form>
<?
if($_GET["txtKeyword"] != "")
{
$strSQL = "SELECT * FROM rental_area WHERE (AreaStatusID LIKE '%".$_GET["txtKeyword"]."%')";
$objQuery = mysql_query($strSQL) or die ("Error Query [".$strSQL."]");
$Num_Rows = mysql_num_rows($objQuery);
$Per_Page = 20; // 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;
}
$strSQL .=" order by RentalAreaID ASC LIMIT $Page_Start , $Per_Page";
$objQuery = mysql_query($strSQL);
?>
</div>
<div class="card-body">
<div class="table-responsive">
<form name="frmMain" method="post" action="<?=$_SERVER["PHP_SELF"];?>">
<input type="hidden" name="hdnCmd" value="">
<table class="table" border="1">
<tr>
<!-- <th width="50"> <div align="center">RentalAreaID </div></th>
--> <th width="90"> <div align="center">NoCode </div></th>
<th width="30"> <div align="center">Zone </div></th>
<th width="30"> <div align="center">Width </div></th>
<th width="30"> <div align="center">length </div></th>
<th width="30"> <div align="center">Size </div></th>
<!--<th width="30"> <div align="center">HouseRegistrationID </div></th>-->
<th width="30"> <div align="center">AreaStatusID </div></th>
<!-- <th width="100"> <div align="center">Note</div></th>
--> <th width="100"> <div align="center">หมายเหตุ </div></th>
<th width="30"> <div align="center">Edit </div></th>
<th width="30"> <div align="center">Delete </div></th>
<th width="100"> <div align="center">CustomerID </div></th>
</tr>
<?
while($objResult = mysql_fetch_array($objQuery))
{
?>
<?
$status = $objResult["AreaStatusID"];
{
if($status == "1") $bg="#91ce31";
if($status == "2") $bg="#eaf043";
if($status == "3") $bg="#f0d643";
if($status == "4") $bg="#ff0000";
if($status == "5") $bg="#f1f3f3";
if($status == "6") $bg="#d0d1d1";
if($status == "7") $bg="#38d1e3";
}
?>
<?
if($objResult["RentalAreaID"] == $_GET["CusID"] and $_GET["Action"] == "Edit")
{
?>
<tr>
<td bgcolor="<?=$bg;?>"><div align="center">
<input type="hidden" name="txtEditRentalAreaID" size="5" value="<?=$objResult["RentalAreaID"];?>">
<input type="hidden" name="hdnEditRentalAreaID" size="5" value="<?=$objResult["RentalAreaID"];?>">
</div></td>
<td align="center" bgcolor="<?=$bg;?>"><input type="text" name="txtEditNoCode" size="5" value="<?=$objResult["NoCode"];?>"></td>
<td align="center" bgcolor="<?=$bg;?>"><input type="text" name="txtEditZone" size="5" value="<?=$objResult["Zone"];?>"></td>
<td bgcolor="<?=$bg;?>"><div align="center"><input type="text" name="txtEditWidth" size="2" value="<?=$objResult["Width"];?>"></div></td>
<td align="center" bgcolor="<?=$bg;?>"><input type="text" name="txtEditlength" size="5" value="<?=$objResult["length"];?>"></td>
<td align="center" bgcolor="<?=$bg;?>"><input type="text" name="txtEditSize" size="5" value="<?=$objResult["Size"];?>"></td>
<!--<td align="center" bgcolor="<?=$bg;?>"><input type="text" name="txtEditHouseRegistrationID" size="5" value="<?=$objResult["HouseRegistrationID"];?>"></td>-->
<td align="center" bgcolor="<?=$bg;?>">
<select name="txtEditAreaStatusID">
<option value="<?=$objResult["AreaStatusID"];?>"><?=$objResult["Description"];?></option>
<?php
$strSQL = "SELECT * FROM area_status ORDER BY AreaStatusID ASC";
$objQuery = mysql_query($strSQL);
while($objResuut = mysql_fetch_array($objQuery))
{
?>
<option value="<?php echo $objResuut["AreaStatusID"];?>"><?php echo $objResuut["AreaStatusID"]." - ".$objResuut["Description"];?></option>
<?php
}
?>
</select>
</td>
<!-- <td bgcolor="<?=$bg;?>"><input type="text" name="txtEditNote" size="20" value="<?=$objResult["Note"];?>" disabled=""></td>
--> <td bgcolor="<?=$bg;?>"><input type="text" name="txtEditother" size="20" value="<?=$objResult["other"];?>" ></td>
<td colspan="2" align="center" bgcolor="<?=$bg;?>"><div align="center">
<input name="btnAdd" type="button" id="btnUpdate" value="Update" OnClick="frmMain.hdnCmd.value='Update';frmMain.submit();">
<input name="btnAdd" type="button" id="btnCancel" value="Cancel" OnClick="window.location='<?=$_SERVER["PHP_SELF"];?>';">
</div></td>
<td align="center" bgcolor="<?=$bg;?>">
<a href="<?=$_SERVER["PHP_SELF"];?>?Action=Edit&CusID=<?=$objResult["RentalAreaID"];?>">click</a></td>
</tr>
<?
}
else
{
?>
<tr>
<!-- <td bgcolor="<?=$bg;?>"><div align="center"><?=$objResult["RentalAreaID"];?></div></td>
--> <td align="center" bgcolor="<?=$bg;?>"><?=$objResult["NoCode"];?></td>
<td align="center" bgcolor="<?=$bg;?>"><?=$objResult["Zone"];?></td>
<td bgcolor="<?=$bg;?>"><div align="center"><?=$objResult["Width"];?></div></td>
<td align="center" bgcolor="<?=$bg;?>"><?=$objResult["length"];?></td>
<td align="center" bgcolor="<?=$bg;?>"><?=$objResult["Size"];?></td>
<!-- <td align="center" bgcolor="<?=$bg;?>"><?=$objResult["HouseRegistrationID"];?></td>-->
<td bgcolor="<?=$bg;?>"><?=$objResult["Description"];?>
</td>
<!-- <td bgcolor="<?=$bg;?>"><?=$objResult["Note"];?></td>
--> <td bgcolor="<?=$bg;?>"><?=$objResult["other"];?></td>
<td align="center" bgcolor="<?=$bg;?>">
<a href="<?=$_SERVER["PHP_SELF"];?>?Action=Edit&CusID=<?=$objResult["RentalAreaID"];?>">Edit</a></td>
<td align="center" bgcolor="<?=$bg;?>"><a href="JavaScript:if(confirm('Confirm Delete?')==true){window.location='<?=$_SERVER["PHP_SELF"];?>?Action=Del&CusID=<?=$objResult["RentalAreaID"];?>';}">Delete</a></td>
<td align="center" bgcolor="<?=$bg;?>"><a href="<?=$_SERVER["PHP_SELF"];?>?Action=Edit&CusID=<?=$objResult["RentalAreaID"];?>">click</a></td>
</tr>
<?
$iN= $objResult["RentalAreaID"]+1;
?>
<?
}
?>
<?
}
?>
</table>
<table class="table">
<tr>
<!-- <td bgcolor="<?=$bg;?>"><input name="txtAddRentalAreaID" size="5" placeholder="<?=$iN;?>" value="<?=$iN;?>"></td>
--> <td align="center" bgcolor="<?=$bg;?>"><input type="text" name="txtAddNoCode" size="5"></td>
<td align="center" bgcolor="<?=$bg;?>"><input type="text" name="txtAddZone" size="5"></td>
<td bgcolor="<?=$bg;?>"><div align="center"><input type="text" name="txtAddWidth" size="2"></div></td>
<td align="center" bgcolor="<?=$bg;?>"><input type="text" name="txtAddlength" size="5"></td>
<td align="center" bgcolor="<?=$bg;?>"><input type="text" name="txtAddSize" size="5"></td>
<!-- <td align="center" bgcolor="<?=$bg;?>"><input type="text" name="txtAddHouseRegistrationID" size="5"></td>
-->
<td align="center" bgcolor="<?=$bg;?>">
<select name="txtAddAreaStatusID">
<option value="<?=$objResult["AreaStatusID"];?>">กรุณาเลือก</option>
<?php
$strSQL = "SELECT * FROM area_status ORDER BY AreaStatusID ASC";
$objQuery = mysql_query($strSQL);
while($objResuut = mysql_fetch_array($objQuery))
{
?>
<option value="<?php echo $objResuut["AreaStatusID"];?>"><?php echo $objResuut["AreaStatusID"]." - ".$objResuut["Description"];?></option>
<?php
}
?>
</select>
</td>
<!-- <td bgcolor="<?=$bg;?>"><input type="text" name="txtAddNote" size="20"></td>
--> <td bgcolor="<?=$bg;?>"><input type="text" name="txtAddother" size="20"></td>
<td colspan="2" align="center" bgcolor="<?=$bg;?>"><div align="center">
<input name="btnAdd" type="button" id="btnAdd" value="Add" OnClick="frmMain.hdnCmd.value='Add';frmMain.submit();">
</div></td>
<td align="center" bgcolor="<?=$bg;?>">
<a href="<?=$_SERVER["PHP_SELF"];?>?Action=Edit&CusID=<?=$objResult["RentalAreaID"];?>">click</a></td>
</tr>
</table>
</form>
<br>
Total <?php echo $Num_Rows;?> Record : <?php echo $Num_Pages;?> Page :
<?php
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> ";
}
mysql_close($objConnect);
}
?>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
Tag : PHP
|
ประวัติการแก้ไข 2019-05-20 17:19:38 2019-05-20 17:20:53
|
|
|
|
|
Date :
2019-05-20 17:16:35 |
By :
nud |
View :
678 |
Reply :
4 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (PHP)
<?php
while(......){?>
<td bgcolor="<?=$bg;?>"><div align="center">
<input type="hidden" name="txtEditRentalAreaID" size="5" value="<?=$objResult["RentalAreaID"];?>">
<input type="hidden" name="hdnEditRentalAreaID" size="5" value="<?=$objResult["RentalAreaID"];?>">
จากโค๊ดข้างบน คุณคิดว่า input tag ข้างล่างจะมีกี่ตัว เมื่อเอามันไปไว้ใน ลูป
<input type="text" name="txtAddNoCode" >
ควรออกแบบให้ object มันสามารถ อ้างอิงได้ชัดเจน นะครับ
จากที่คุณทำมันก็จะ เริ่มจาก 0 ถึง จำนวนที่มี -1 คุณไปอ้าง 80 ซึ่งเกินจำนวน มันก็ไม่เจอหรอกครับ
กำหนดให้ชัดเจน
Code (PHP)
<td bgcolor="<?=$bg;?>">
<input name="txtAddRentalAreaID" size="5" placeholder="<?=$iN;?>" value="<?=$iN;?>"></td>
<td align="center" bgcolor="<?=$bg;?>">
<input type="text" name="txtAddNoCode[<?=$iN;?>]" size="5"></td>
<td align="center" bgcolor="<?=$bg;?>">
<input type="text" name="txtAddZone[<?=$iN;?>]" size="5"></td>
ปล. ตัวอย่างก๊อปมาผิดบันทัด มันต้องเอาส่วนของ edit มา แต่ขี้เกียจแล้ว 5555 ดูเอาเองนะครับ
ประเด็น เลขที่กำกับ element ต้องกำหนดให้มัน
|
ประวัติการแก้ไข 2019-05-21 10:42:57 2019-05-21 10:46:12
|
|
|
|
Date :
2019-05-21 10:41:21 |
By :
Chaidhanan |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอบคุณทั้ง2ท่านมากนะคะ
|
|
|
|
|
Date :
2019-05-23 08:24:54 |
By :
nud |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 01
|