|
|
|
ช่วยดูให้หน่อยครับ แบ่งหน้า page ไม่ได้ครับ ดึงมาจาก mysql ครับ |
|
|
|
|
|
|
|
ช่วยแนะนำด้วยครับ ผมนำ code php จาก thaicreate มาแก้ไขแต่ปรับให้แบ่งหน้าแสดงผลไม่ได้ครับ
Code (PHP)
<?php
session_start();
if($_SESSION['UserID'] == "")
{
echo "Please Login!";
exit();
}
?>
<html>
<head>
<title>DhawathSystems Data</title>
<meta http-equiv="content-type" content="text/html; charset=tis-620" />
</head>
<body>
<center>
<?
include("inc/connect.php");
//*** Add Condition ***//
if($_POST["hdnCmd"] == "Add")
{
$strSQL = "INSERT INTO customer ";
$strSQL .="(CustomerID,Name,Email,pc,License_win,License_off) ";
//$strSQL .="(CustomerID,Name,Email,pc,license_win) ";
$strSQL .="VALUES ";
$strSQL .="('".$_POST["txtAddCustomerID"]."','".$_POST["txtAddName"]."','".$_POST["txtAddEmail"]."' ,'".$_POST["txtpc"]."' ";
//$strSQL .=",'".$_POST["txtlicense_win"]."') ";
$strSQL .=",'".$_POST["txtAddBudget"]."','".$_POST["txtAddUsed"]."') ";
$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 customer SET ";
$strSQL .="CustomerID = '".$_POST["txtEditCustomerID"]."' ";
$strSQL .=",Name = '".$_POST["txtEditName"]."' ";
$strSQL .=",Email = '".$_POST["txtEditEmail"]."' ";
$strSQL .=",pc = '".$_POST["txtpc"]."' ";
$strSQL .=",License_win = '".$_POST["txtEditBudget"]."' ";
$strSQL .=",License_off = '".$_POST["txtEditUsed"]."' ";
$strSQL .="WHERE CustomerID = '".$_POST["hdnEditCustomerID"]."' ";
$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 customer ";
$strSQL .="WHERE CustomerID = '".$_GET["CusID"]."' ";
$objQuery = mysql_query($strSQL);
if(!$objQuery)
{
echo "Error Delete [".mysql_error()."]";
}
//header("location:$_SERVER[PHP_SELF]");
//exit();
}
$strSQL = "SELECT * FROM customer";
$objQuery = mysql_query($strSQL) or die ("Error Query [".$strSQL."]");
?>
<font color=red size=3><b>ระบบบริหารจัดการรายละเอียด ผู้ใช้ แผนก ทรัพยากรมนุษย์และธุรการ</b></font>
<form name="frmMain" method="post" action="<?=$_SERVER["PHP_SELF"];?>">
<input type="hidden" name="hdnCmd" value="">
<table width="760" border="1">
<tr>
<th width="36"> <div align="center">ลำดับ</div></th>
<th width="120"> <div align="center">ชื่อ - นามสกุล</div></th>
<th width="120"> <div align="center">E-mail </div></th>
<th width="135"> <div align="center">ประเภทคอมพิวเตอร์ </div></th>
<th width="38"> <div align="center">License Windows </div></th>
<th width="30"> <div align="center">License Office </div></th>
</tr>
<?php
while($objResult = mysql_fetch_array($objQuery))
{
?>
<?
if($objResult["CustomerID"] == $_GET["CusID"] and $_GET["Action"] == "Edit")
{
?>
<tr>
<td><div align="center">
<input type="text" name="txtEditCustomerID" size="5" value="<?=$objResult["CustomerID"];?>">
<input type="hidden" name="hdnEditCustomerID" size="5" value="<?=$objResult["CustomerID"];?>">
</div></td>
<td><input type="text" name="txtEditName" size="20" value="<?=$objResult["Name"];?>"></td>
<td><input type="text" name="txtEditEmail" size="20" value="<?=$objResult["Email"];?>"></td>
<td><input name="txtpc" type="radio" value="computer desktop">Computer Desktop<br>
<input name="txtpc" type="radio" value="notebook">Notebook<br></td>
<td align="right"><input type="text" name="txtEditBudget" value="<?=$objResult["License_win"];?>"></td>
<td align="right"><input type="text" name="txtEditUsed" value="<?=$objResult["License_off"];?>"></td>
<td colspan="2" align="right"><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>
</tr>
<?
}
else
{
?>
<tr>
<td><div align="center"><?=$objResult["CustomerID"];?></div></td>
<td><?=$objResult["Name"];?></td>
<td><?=$objResult["Email"];?></td>
<td><?=$objResult["pc"];?></td>
<td align="right"><?=$objResult["License_win"];?></td>
<td align="right"><?=$objResult["License_off"];?></td>
<td align="center"><a href="<?=$_SERVER["PHP_SELF"];?>?Action=Edit&CusID=<?=$objResult["CustomerID"];?>">Edit</a></td>
<td align="center"><a href="JavaScript:if(confirm('Confirm Delete?')==true){window.location='<?=$_SERVER["PHP_SELF"];?>?Action=Del&CusID=<?=$objResult["CustomerID"];?>';}">Delete</a></td>
</tr>
<?
}
?>
<?
}
?>
<tr>
<td><div align="center"></div></td>
<td><input type="text" name="txtAddName" size="20"></td>
<td><input type="text" name="txtAddEmail" size="20"></td>
<td><input name="txtpc" type="radio" value="computer desktop">Computer Desktop<br>
<input name="txtpc" type="radio" value="notebook">Notebook<br></td>
<td align="right"><input type="text" name="txtAddBudget" ></td>
<td align="right"><input type="text" name="txtAddUsed" ></td>
<td colspan="2" align="right"><div align="center">
<input name="btnAdd" type="button" id="btnAdd" value="Add" OnClick="frmMain.hdnCmd.value='Add';frmMain.submit();">
</div></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'><< Back</a> ";
}
for($i=1; $i<=$Num_Pages; $i++){
if($i != $Page)
{
echo "[ <a href='$_SERVER[SCRIPT_NAME]?Page=$i'>$i</a> ]";
}
else
{
echo "<b> $i </b>";
}
}
if($Page!=$Num_Pages)
{
echo " <a href ='$_SERVER[SCRIPT_NAME]?Page=$Next_Page'>Next>></a> ";
}
mysql_close($objConnect);
?>
<?
//mysql_close($objConnect);
?>
</center>
</body>
</html>
แนะนำด้วยครับมือใหม่หัดเขียนครับ
Tag : PHP
|
|
|
|
|
|
Date :
2015-04-03 09:15:43 |
By :
ritza |
View :
971 |
Reply :
4 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
คุณลืม Code ไปหลายตัวเลยครับ
Code (PHP)
$strSQL = "SELECT * FROM customer ";
$objQuery = mysql_query($strSQL) or die ("Error Query [".$strSQL."]");
$Num_Rows = mysql_num_rows($objQuery);
$Per_Page = 2; // 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 CustomerID ASC LIMIT $Page_Start , $Per_Page";
$objQuery = mysql_query($strSQL);
PHP MySQL List Record Paging/Pagination
|
|
|
|
|
Date :
2015-04-03 10:42:24 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
เรียนคุณ TC ADMIN ครับ
code ที่เหลือ อยู่ใน
Code (PHP)
include("inc/connect.php");
<?
$objConnect = mysql_connect("localhost","root","root") or die("Error Connect to Database");
$objDB = mysql_select_db("mydatabase");
$strSQL = "SELECT * FROM customer ";
$objQuery = mysql_query($strSQL) or die ("Error Query [".$strSQL."]");
$Num_Rows = mysql_num_rows($objQuery);
$Per_Page = 5; // 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 CustomerID ASC LIMIT $Page_Start , $Per_Page";
$objQuery = mysql_query($strSQL);
?>
แบบนี้จะได้หรือปล่าวครับ
ผมอ้างอิงจากการใช้ form ทำ Add , Edit , Delete ใน form เดียวครับ
เหมือนของ thaicreate ครับ
https://www.thaicreate.com/php/php-mysql-add-insert-edit-delete-mysql-same-form.html
แนะนำด้วยครับ ขอบคุณครับ
|
|
|
|
|
Date :
2015-04-03 15:31:55 |
By :
ritza |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
จาก topic
072.$strSQL = "SELECT * FROM customer";
073.$objQuery = mysql_query($strSQL) or die ("Error Query [".$strSQL."]");
รวมกับ คห 2
37.$strSQL .=" order by CustomerID ASC LIMIT $Page_Start , $Per_Page";
38.$objQuery = mysql_query($strSQL);
ได้เป็น
072. $strSQL = "SELECT * FROM customer";
37. $strSQL .=" order by CustomerID ASC LIMIT $Page_Start , $Per_Page";
073. $objQuery = mysql_query($strSQL) or die ("Error Query [".$strSQL."]");
|
|
|
|
|
Date :
2015-04-03 16:38:50 |
By :
Chaidhanan |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอบคุณครับเดียวรองดูก่อนนะครับว่าได้หรือปล่าวถ้าติดส่วนใหนขอรบกวนทุกท่านด้วยครับ
ขอบคุณครับ
|
|
|
|
|
Date :
2015-04-06 15:56:07 |
By :
ritza |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 03
|