|
|
|
มึน งง ทำไมถึงไม่แบ่งหน้าให้ ใน database มี 4 row ผมกำหนด |
|
|
|
|
|
|
|
ใน database มี 4 row ผมกำหนด $pagesize=1; //แสดงจำนวนต่อหน้า 1row = 1หน้า แต่ทำไมถึงแบ่งหน้าออกมา 4 หน้า แต่ละหน้ามี 4 row และทำไมตรงบนหัวตารางซ้าย ที่ผมขีดเส้นสีแดงมันคืออะไร เพราะอะไรคับ ตามภาพ ขอบคุณคับ
Code
<html>
<head>
<title>ออกบิลการขาย</title>
<meta http-equiv="Content-Type" content="text/html; charset=windows-874">
<link rel="shortcut icon" href="../zom.ico">
<link href="admin.css" rel="stylesheet" type="text/css">
<body>
<form name="form1" method="post" action="">
<?
include("config.php");
$sql1 = "SELECT * FROM product"; //SELECT แรกดึกข้อมูลในTabel และแสดงจำนวน
mysql_query("SET NAMES 'tis620'");
$table1 = mysql_query($sql1,$conn) or die("ไม่สามารถติดต่อฐานข้อมูลได้1");
$totalrow = mysql_num_rows($table1);
$pagesize=1; //แสดงจำนวนต่อหน้า
$totalpage=(int)($totalrow/$pagesize); //แบ่งหน้า-ทั้งหารจำนวณคนต่อหน้า
if(($totalrow%$pagesize)!=0){
$totalpage+=1;
}
if(isset($_GET['page'])){
$pageno=$_GET['page'];
$start=$pagesize*($pageno-1);
}
else{
$pageno=1;
$start=0;
}
?>
<table width="813" border="0" align="center" cellpadding="0" cellspacing="2">
<tr>
<td width="832" bgcolor="#EDF7DE"><table width="898" border="1" align="center" cellpadding="0" cellspacing="0" bordercolor="#111111" style="border-collapse: collapse; border: 1px dotted #008000">
<tr>
<td height="28" colspan="7"><span class="style3"><span class="style29">:: ข้อมูลการสั่งซื้อ :: </span></span></td>
</tr>
<tr>
<td colspan="7">จำนวนสินค้าทั้งหมดมี
<?=$totalrow?>
รายการ
<?
if($pageno >1){
echo " <a href='orders.php?page=",$pageno-1,"'>หน้าที่แล้ว</a> |";
}
for($i=1;$i<=$totalpage;$i++){
if($pageno==$i){
echo "<b>no ".$i."</b> |";
}
else{
echo " <a href=\"orders.php?page=$i\">$i</a> |";
}
}
if($pageno<$totalpage){
echo " <a href='orders.php?page=",$pageno+1,"'>หน้าถัดไป</a>";
}
?></td>
</tr>
<tr><td width="74" height="32"><div align="center">รหัสสินค้า</div></td>
<td width="281"><div align="center">ชื่อสินค้า</div></td>
<td width="87"><div align="center">ราคา</div></td>
<td width="74"><div align="center">คะแนน</div></td>
<td width="33"><div align="center">จำนวน</div></td>
<td width="138"><div align="center">รวม</div></td>
<td width="106"><div align="center">รวมคะแนน</div></td>
</tr>
<?php
if($totalrow==0) {
echo "<font color=#FFFFFF>ยังไม่มีรายชื่อสมาชิกในระบบ</font>";
}
else {
$sql3 ="SELECT * FROM product ORDER BY ProductID ASC"; // SELECT data product
mysql_query("SET NAMES 'tis620'");
$table3 = mysql_query($sql3,$conn) or die("ไม่สามารถติดต่อฐานข้อมูลได้");
$i = 0;
while($row=mysql_fetch_array($table3)){
$sum_price = $row['Price'] * $_POST['num_get'][$i];
$sum_score = $row['Pv'] * $_POST['num_get'][$i];
?>
<tr bgcolor="#FFFFCC">
<td width="74"><?=$row['ProductID']?></td>
<td><?=$row['ProductName']?></td>
<td><?=number_format($row['Price'],2,'.',','); ?></td>
<td><?=$row['Pv']?></td>
<td><input name="num_get[<?=$i?>]" type="text" class="textfild" id="num_get[<?=$i?>]" size="3" maxlength="3"></td>
<td><?=$_SESSION['sum_price'][$i];?></td>
<td><?= $_SESSION['sum_score'][$i];?></td>
</tr>
<?php
$count--;
}
}
mysql_close($conn);
?>
<tr bgcolor="#FFFFCC">
<td height="27" colspan="5" valign="top"><div align="right"><b><font color="#008000">รวมคะแนน:</font></b></div>
</tr>
<tr bgcolor="#FFFFCC">
<td height="27" colspan="5"><div align="right"><b><font color="#008000">รวมยอดซื้อ:</font></b> </div>
</tr>
<tr bgcolor="#FFFFCC">
<td height="27" colspan="5"><div align="right"><b><font color="#008000"> ภาษีมูลค่าเพิ่ม (7%):</font></b> </div>
</tr>
<tr bgcolor="#FFFFCC">
<td height="27" colspan="5"><div align="right"><b><font color="#008000">ราคารวมทั้งสิ้น</font></b><font color="#008000"></font><span class="style30">:</span> </div>
</tr>
<tr bgcolor="#FFFFCC">
<td height="27" colspan="7"><div align="center">
<input type="submit" name="Submit" value="คำนวนราคา" class="bottom1">
<br />
</div>
<div align="right"><a href="adminproduct-del-all.php" onClick="delsure(); return false;"></a></div>
<div align="center"></div>
<div align="center"></div> </tr>
</table></td>
</tr>
</table>
</form>
</body>
</html>
Tag : - - - -
|
|
|
|
|
|
Date :
2009-12-09 15:32:41 |
By :
gofgof |
View :
1260 |
Reply :
7 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
เงียบสนิท เหมือนกับปัญญาผมตอนนี้เลย 555 ผมถามไม่รู้เรื่องหรอคับ 555
|
|
|
|
|
Date :
2009-12-09 16:25:22 |
By :
gofgof |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
รู้ครับ ว่าคุณ g.of ถาม แต่คนตอบ .. เขาจะตอบหรือไม่นั้นหละครับ
|
|
|
|
|
Date :
2009-12-09 17:08:08 |
By :
deawx |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ซะงั้น ไมอะคับ คำถามเน่าไปหรอ ผมทำไรผิดเนีย
|
|
|
|
|
Date :
2009-12-09 18:20:49 |
By :
gofgof |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
-*-
|
|
|
|
|
Date :
2009-12-09 18:35:22 |
By :
DownsTream |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
https://www.thaicreate.com/php/forum/025968.html
|
|
|
|
|
Date :
2009-12-09 18:53:11 |
By :
peterxp |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 03
|