|
|
|
ต้องการคำนวณปี จากข้อมูลที่แสดงเป็นแถว มัน errorครับ ต้องแก้ยังไงครับ |
|
|
|
|
|
|
|
เอา error มาดูหน่อยครับ ^^
|
|
|
|
|
Date :
2013-03-25 16:12:57 |
By :
pokultra |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขึ้นแบบนี้ครับ
Code (PHP)
Fatal error: Call to undefined function displaydate() in C:\AppServ\www\dbpolicelist2.php on line 25
ลองใส่ โค้ดใต้ คำสั่ง query
Code (PHP)
$objConnect = mysql_connect("localhost","root","root") or die("Error Connect to Database");
$objDB = mysql_select_db("police_mamber");
$strSQL = "SELECT * FROM ob ";
$objQuery = mysql_query($strSQL) or die ("Error Query [".$strSQL."]");
$daypolice=$result["daypolice"];
list($bday, $bmonth, $byear)= explode("/",displaydate($daypolice));
$u_y=$byear-2539;
$u_m=$bmonth;
$u_d=$bday;
คำสั่งนี้ผมเคยใช้ แค่ แสดงข้อมูล เดี่ยวๆ แต่แสดงเป็น แถว ยังไม่ได้เลยครับ
|
ประวัติการแก้ไข 2013-03-25 16:48:06 2013-03-25 16:48:16 2013-03-25 16:48:25 2013-03-25 16:48:34 2013-03-25 16:49:51
|
|
|
|
Date :
2013-03-25 16:46:55 |
By :
puldool |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
displaydate();
มันหาฟังก์ชั่นนี้ไม่เจอครับ
|
|
|
|
|
Date :
2013-03-25 17:12:25 |
By :
deawx |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ปัญหาตอนนี้ คือ ต้องการให้มีการคำนวณ ปีในแต่ละแถวด้วยน่ะครับ แต่คำสั่งไม่ทำงานครับ
เช่นว่า ปีที่จะเอามาลบ แสดงใน phpmyadminเป็น 1999-03-12 แต่ใส่โค้ดให้เป็นปีไทยแล้ว แต่ผลออกมาเป็น //543 แล้ว
ในช่องถัดไปให้มีการคำนวณ ตามโค้ด แต่ผลออกมาเป็น //1996 ทุกอัน เหมือนว่าไม่มีข้อมูลมาคำนวณ
ผมเอาโค้ดมาจากหน้าที่แสดงข้อมูล เดี่ยวๆ น่ะครับ แต่นำมาใช้กับแสดงข้อมูลรวมกัน ต้องแก้ไขยังไงครับ
Code (PHP)
<html>
<head>
<title></title>
<meta http-equiv="Content-Type" content="text/html; charset=windows-874">
</head>
<body>
<?
include("menu.php");
$objConnect = mysql_connect("localhost","root","root") or die("Error Connect to Database");
$objDB = mysql_select_db("police_mamber");
$strSQL = "SELECT * FROM ob ";
$objQuery = mysql_query($strSQL) or die ("Error Query [".$strSQL."]");
echo "<font size= 3> $u_y ";
?>
<?
$Num_Rows = mysql_num_rows($objQuery);
$Per_Page = 100; // 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 id ASC LIMIT $Page_Start , $Per_Page";
$objQuery = mysql_query($strSQL);
?>
<center><table width="1000" border="1">
<tr>
<center>
<th width="70"> <div align="center" >รหัส</div></th>
<th width="60"> <div align="center" >รหัสประจำตัวประชาชน</div></th>
<th width="70"> <div align="center" >ยศ</div></th>
<th width="70"> <div align="center" >เพศ</div></th>
<th width="180"> <div align="center" >ชื่อ</div></th>
<th width="180"> <div align="center" >นามสกุล</div></th>
<th width="150"> <div align="center" >เลขตำแหน่ง</div></th>
<th width="71"> <div align="center" >แก้ไข</div></th>
</>
</tr>
<?
function displaydate($daypolice) {
$date_array=explode("-",$daypolice);
$y=$date_array[0]+543;
$m=$date_array[1];
$d=$date_array[2];
$displaydate="$d/$m/$y";
return $displaydate;
}
$datadate = date("d-m-y");
list($bday, $bmonth, $byear)= explode("/",displaydate($daypolice));
$u_y=$byear-2539;
$u_m=$bmonth;
$u_d=$bday;
echo "<font size= 3> $u_y ";
?>
<?
while($objResult = mysql_fetch_array($objQuery))
{
?>
<tr>
<td><?=$objResult["id"];?></div></td>
<td><?=$objResult["idpeople"];?></td>
<td><?=$objResult["rank"];?></td>
<td><?=$objResult["sex"];?></td>
<td><?=$objResult["name"];?></div></td>
<td ><?=$objResult["lastname"];?></td>
<td ><?=$objResult["idposition"];?></td>
<td ><?php echo displaydate($daypolice); ?></td>
<td ><?=$u_y;?></td>
<td bgcolor="#EEEEEE"><a href='dbpoliceshow.php?id=<?php echo $objResult["id"]; ?>',<?=$objResult["FilesID"];?>>edit</a>
</tr>
<?
}
?>
</table>
<br>
Total <?= $Num_Rows;?> Record : <?=$Num_Pages;?> Page :
<?
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);
?>
</body>
</html>
|
ประวัติการแก้ไข 2013-03-25 19:10:58 2013-03-25 19:12:22 2013-03-25 19:21:47 2013-03-25 19:22:44 2013-03-25 19:27:43 2013-03-25 19:28:41 2013-03-25 19:30:39
|
|
|
|
Date :
2013-03-25 19:05:42 |
By :
puldool |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 00
|