|
|
|
ช่วยดูหน่อย ติดนิดเดียวแล้ว ไม่รู็ว่าเป็นอะไร ช่วยแนะนำหน่อยคะ |
|
|
|
|
|
|
|
อยากรู้ว่ามันเป็นอะไรคะ มันขึ้นมาแบบนี้
ดัชนีมวกาย(BMI)
ความต้องการ
Warning: Division by zero in C:\AppServ\www\hbo\ii.php on line 45
นี้โค๊ดคะ
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-874" />
<title>แสดงตารางข้อมูล</title>
<style type="text/css">
<!--
body {
background-image: url(image/background.gif);
}
.style2 {font-family: "Angsana New"; font-weight: bold; font-size: 24px; }
-->
</style></head>
<script language="JavaScript">
function onDelete()
{
if(confirm('Do you want to delete ?')==true)
{
return true;
}
else
{
return false;
}
}
</script>
<body>
<h3>แสดงข้อมูลตาราง</h3>
<p align="center"><strong>ดัชนีมวกาย(BMI)</strong></p>
<form id="form1" name="form1" method="post" action="" OnSubmit="return onDelete();">
<table width="679" height="41" border="0" align="center">
<tr bordercolor="#FFFFFF" bgcolor="#D1D1E7">
<td width="138" align='right' font face="Angsana New"> <div align="center">ความต้องการ</div></td>
<td width="138" align='left' font face="Angsana New"><div align="center" class="style2">Date</div></td>
<td width="138" align='right' font face="Angsana New"><div align="center" class="style2">Sex</div></td>
<td width="96" align='left' font face="Angsana New"><div align="center" class="style2">Age</div></td>
<td width="84" align='right' font face="Angsana New"><div align="center" class="style2">Height</div></td>
<td width="179" align='left' font face="Angsana New"><div align="center" class="style2">Weight</div></td>
</tr>
<?php
include("connect1.php");
$result = mysql_db_query($dbname,$sql);
function pagenavi($page, $limit, $range, $count, $style="", $oncolor="#FF0000", $send=NULL, $target="_self"){
$output = "";
$total = ceil($count/$limit);
$navi_start = $page-$range;
$navi_end = $page+$range;
$send .= (!empty($send))? "&" : NULL;
if($navi_start <= 0) $navi_start = 1;
if($navi_end >= $total) $navi_end = $total;
if($page>1){
$navi_back = $page-1;
if($page > 2)
$output .= "<a href=\"?" . $send . "page=1\" target=\"" . $target . "\" class=\"" . $style . "\">«</a> ";
$output .= "<a href=\"?" . $send . "page=" . $navi_back . "\" target=\"" . $target . "\" class=\"" . $style . "\">‹</a> ";
}
for($i = $navi_start; $i <= $navi_end; $i++){
if($i == $page)
$output .= "<a href=\"?" . $send . "page=" . $i . "\" target=\"" . $target . "\" class=\"" . $style . "\"><strong><font color=\"" . $oncolor . "\">$i</font></strong></a> ";
else
$output .= "<a href=\"?" . $send . "page=" . $i . "\" target=\"" . $target . "\" class=\"" . $style . "\">$i</a> ";
}
if($page < $total){
$navi_next = $page+1;
$output .= "<a href=\"?" . $send . "page=" . $navi_next . "\" target=\"" . $target . "\" class=\"" . $style . "\">›</a> ";
if(($page+1) < $total)
$output .= "<a href=\"?" . $send . "page=" . $total . "\" target=\"" . $target . "\" class=\"" . $style . "\">»</a>";
}
if($navi_start>$navi_end) {
$output .= "<a href=\"?" . $send . "page=" . $page . "\" target=\"" . $target . "\" class=\"" . $style . "\"><strong>$page</strong></a> ";
return $output;
}
include("connect1.php");
$page = (isset($_GET['page']))? intval($_GET['page']) : 1;
$limit_end = 20;
$limit_start = ($page-1)*$limit_end;
$sql = "select * from tbfood order by id";
$result = mysql_query($sql . " limit " . $limit_start. "," . $limit_end );
$rc_total = mysql_num_rows(mysql_query($sql));
while($record=mysql_fetch_array($result)){
?>
<td> <input name="form1" type="checkbox" value="" /></td>
<?
echo "
<td font face='Angsana New' bgcolor='#E4E4F1' align='center' >$record[date]</td>
<td font face='Angsana New' bgcolor='#E4E4F1' align='center' >$record[sex]</td>
<td bgcolor='#E4E4F1' align='center'>$record[age]</td>
<td bgcolor='#E4E4F1' align='center'>$record[height]</td>
<td bgcolor='#E4E4F1' align='center'>$record[weight]</td>
</tr>";
}
}
?>
</table>
<div>
<div align="center"><br />
หน้า : <?php echo pagenavi($page, $limit_end, 4, $rc_total); ?></div>
</div>
</p>
</form>
<p align="center"><strong><a href="adin.php">กลับ</a></strong></p>
</body>
</html>
ต้องการให้มันแสดงออกมาอย่างนี้คะ
Tag : PHP, MySQL
|
|
|
|
|
|
Date :
2010-11-28 20:23:11 |
By :
อิอิ |
View :
728 |
Reply :
4 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
เนื่องจากตัวหารมีค่าเป็น 0 น่ะครับ ให่ใส่ @ ข้างหน้าน่ะครับ
$total = @ceil($count/$limit);
|
|
|
|
|
Date :
2010-11-28 22:28:38 |
By :
webmaster |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
มันแก้ตรงerror ได้แล้วคะ แต่ไม่แสดงข้อมูลออกมาคะ ไม่ทราบเป็นอะรคะ
|
|
|
|
|
Date :
2010-11-29 09:46:46 |
By :
อิอิ |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ไม่มีใครช่วยตอบเลย
|
|
|
|
|
Date :
2010-11-29 15:20:08 |
By :
อิอิ |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ช่วยด้วยยยยยยยยยยยยยยยยยยยยยยยยยยยยยยยยยยย
|
|
|
|
|
Date :
2010-11-29 21:14:21 |
By :
ใจ |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 02
|