|
|
|
การเปลี่ยนวันที่ในตาราง และการคำนวณปีในตาราง ครับ |
|
|
|
|
|
|
|
ผมลองเอาโค้ดจากหน้าที่มีการใช้ get มาแปลงดู แต่ก็ยังไม่ได้ครับ ต้องการทำตามรูปเลยครับ
Code (PHP)
<html>
<head>
<title></title>
<meta http-equiv="Content-Type" content="text/html; charset=windows-874">
</head>
<body>
<?
include("menu.php");
$host="localhost";
$username="root";
$password="root";
$db="police_mamber";
$tb="ob";
$objConnect = mysql_connect("localhost","root","root") or die("Error Connect to Database");
$objDB = mysql_select_db("police_mamber");
$strSQL = "SELECT * FROM ob ";
mysql_db_query($dbname,"SET NAMES tis620");
mysql_query("SET character_set_database ='tis620'");
mysql_query("SET character_set_results ='tis620'");
mysql_query("SET character_set_client ='tis620'");
mysql_query("SET character_set_connection ='tis620'");
mysql_query("SET character_set_system ='tis620'");
mysql_query("collation_connection = tis620_thai_ci");
mysql_query("collation_database = tis620_thai_ci");
mysql_query("collation_server = tis620_thai_ci");
$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);
?>
/////////////////////////////////////////////////////////////////////// โค้ดวันเวลาไทย
<?
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-2540;
$u_m=$bmonth;
$u_d=$bday;
echo "<font size= 3> $u_y ";
?>
<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="150"> <div align="center" >วันเข้าทำงาน</div></th>
<th width="150"> <div align="center" >รุ่นที่</div></th>
<th width="71"> <div align="center" >แก้ไข</div></th>
</>
</tr>
<?
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 ><?=$objResult["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>
Tag : PHP, MySQL
|
ประวัติการแก้ไข 2013-03-26 13:55:53
|
|
|
|
|
Date :
2013-03-26 13:54:55 |
By :
puldool |
View :
856 |
Reply :
4 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
https://www.thaicreate.com/php/php-thai-date-time-function.html
แปลงเป็นวันเดือนปีไทย
https://www.thaicreate.com/php/php-explode.html
แยก พ.ศ. หลังจากแปลงเป็นไทยแล้ว ออกมาลบ 1996
|
|
|
|
|
Date :
2013-03-26 14:21:50 |
By :
iieszz |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ลง explode และสร้าง function วันเดือนปีดูสิครับ
|
|
|
|
|
Date :
2013-03-26 14:25:41 |
By :
Ex-[S]i[L]e[N]t |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
โค้ดแปลงวันที่ กับคำนวณปี ที่ผมลองเอามาทำ ใช้ด้วยกันไม่ได้ใช่ไหมครับ ที่ผมงงตรงที่มันเป็นการวนลูป แต่จะใช้เงื่อนไขยังไง
ขอบคุณครับ จะลองทำตามพี่ๆบอกนะครับ
Code (PHP)
/////////////////////////////////////////////////////////////////////// โค้ดวันเวลาไทย
<?
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-2540;
$u_m=$bmonth;
$u_d=$bday;
echo "<font size= 3> $u_y ";
?>
|
ประวัติการแก้ไข 2013-03-26 14:57:59 2013-03-26 15:00:11 2013-03-26 15:00:24
|
|
|
|
Date :
2013-03-26 14:57:11 |
By :
puldool |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ใครมีวิธีทำ หรือตัวอย่างแบบนี้บ้าง รบกวนด้วยนะครับ ยังทำไม่ได้เลยครับ
|
ประวัติการแก้ไข 2013-03-27 12:29:15 2013-03-27 12:29:23 2013-03-27 12:30:53 2013-03-27 12:41:18
|
|
|
|
Date :
2013-03-27 12:18:40 |
By :
puldool |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 00
|