|
|
|
อยากทราบว่า การเขียนแสดงข้อมูลปี เป็นปัจุบันเขียนยังไงค่ะ เหมือนกับเราออกรายงานในแต่ละปี อะค่ะ แต่ให้มันปีและข้อมูลเองอัตโนมัติ |
|
|
|
|
|
|
|
Code (PHP)
<?
$year=!empty($_POST[year]) ? $_POST[year] : date("Y");
?>
<form id="search" name="search" action="" method="post">
<select id="year" name="year" style="font-family:Angsana New;font-size:15pt;" onchange="this.form.submit();">
<?
for($i=(date("Y")-5);$i<=(date("Y")+5);$i++){
$selected=$_POST[year]==$i ? "selected=\"selected\"" : "";
if(empty($_POST[year]) AND $i==date("Y",mktime(0,0,0,date("m"),1,date("Y")))){
$selected="selected=\"selected\"";
}
print("<option value=\"".$i."\"".$selected.">".($i+543)."</option>");
}
?>
</select>
</form>
เขียนการดึงข้อมูลจาก ฐานข้อมูลต่อเอานะครับ ตัวแปร ปีที่ใช้ $year นะ
|
|
|
|
|
Date :
2014-01-04 15:21:57 |
By :
FreshyMusiC |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 05
|