|
|
|
ทำ drowdrop เลือกกับปี แล้วมันไม่แสดงชื่อเดือนที่เราเลือก |
|
|
|
|
|
|
|
Code (PHP)
<form name="show" method="get" action="h_report1.php">
<div align="center">เดือน
<select name='month' id='month'>
<?
$month=array("มกราคม","กุมภาพันธ์","มีนาคม","เมษายน","พฤษภาคม","มิถุนายน","กรกฎาคม","สิงหาคม","กันยายน","ตุลาคม", "พฤศจิกายน" ,"ธันวาคม");
for($i=0;$i<12;$i++){ ?>
<option value="<? =$month[$i];?>"><? =$month[$i]; ?> </option>
<? } ?>
</select>
ปี
<select name='year' id='year'>
<?
$xYear=date('Y'); // เก็บค่าปีปัจจุบันไว้ในตัวแปร
echo '<option value="'.$xYear.'">'.$xYear.'</option>'; // ปีปัจจุบัน
for($i=1;$i<=3;$i++){
echo '<option value="'.($xYear-$i).'">'.($xYear-$i).'</option>';
}
?>
</select>
<input type="submit" name="button3" id="button3" value="ตกลง" />
</div>
</form>
<label>
<div align="center"></div>
</label>
<table width="90%" border="1" align="center" cellpadding="0" cellspacing="0">
<TR>
<TD width="25%" height="30"><div align="center">เดือน/ปี</div></TD>
<TD width="21%"><div align="center">เลขที่ใบเสนอราคา</div></TD>
<TD width="21%"><div align="center">บริษัท</div></TD>
<TD width="21%"><div align="center">ประเภทงานที่รับเหมา</div></TD>
</TR>
<?php
include('connect_db.php');
$sqlsel ="select a.stQuatation,b.dtBuild,c.cCom,d.cCons from order_status a INNER JOIN step1 b ON (b.nID=a.nID)INNER JOIN tb_customer c ON (c.nID=a.nID) INNER JOIN tb_typecontractor d ON (d.nID=b.nTypeCons) where MONTH(dtBuild) ='$_GET[month]' AND YEAR(dtBuild) = '$_GET[year]' ";
$sqlquery = mysql_query($sqlsel)or die (mysql_error());
?>
<?php
while($row=mysql_fetch_array($sqlquery))
{
?>
พอดีจะทำเป็นการออกรายงานค่ะ ทำไม่ได้สักที่
Tag : PHP, MySQL
|
|
|
|
|
|
Date :
2013-07-10 13:47:38 |
By :
supaporn.gig |
View :
737 |
Reply :
1 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
คุณจะต้องใส่ค่า Default ให้มันด้วยครับ ลองดูบทความนี้
PHP MySQL DropDownList / Listmenu / ListBox
|
|
|
|
|
Date :
2013-07-11 11:01:47 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 03
|