|
|
|
เปิดหน้าแรกอยากให้มันตั้งค่า search อัตโนมัติ โดยเลือกค่าไว้ที่เดือนปัจจุบัน |
|
|
|
|
|
|
|
เปิดหน้าแรกอยากให้มันตั้งค่า search ไว้ที่เดือนปัจจุบัน และค้นหาเลยครับ
ปัญหาคือ
- เปิดมา มันเลือกเดือนปัจจุบันอยู่แล้ว แต่พอเลือกเดือนอื่น มันก็กลับมา seleted เดือนปัจจุบัน
- อยากให้ค้นหาเลยครับตอนเปิดขึ้นมา โดยเลือกค้นหาจากเดือนปัจจุบัน
Code (PHP)
$month_arr = array("","January", "Febuary", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December");
<form name="frmMain" method="GET" action="<?=$_SERVER['SCRIPT_NAME'];?>">
<select name="selectmonth">
<option value="">- เลือกเดือน -</option>
<?PHP
for($nummonth=1;$nummonth<count($month_arr);$nummonth++)
{
?>
<option value="<?=$nummonth;?>"
<?PHP
if(date(m)==$nummonth)
{
echo"selected";
}
if($_GET["selectmonth"]==$nummonth)
{
echo"selected";
}
?>>
<?=$month_arr[$nummonth];?></option>
<?PHP
}
?>
</select>
</form>
Tag : PHP, MySQL, Ms SQL Server 2008, HTML/CSS, JavaScript
|
|
|
|
|
|
Date :
2012-09-20 23:00:18 |
By :
HelpME |
View :
1046 |
Reply :
6 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (PHP)
$month_arr = array("","January", "Febuary", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December");
<form name="frmMain" method="GET" action="<?=$_SERVER['SCRIPT_NAME'];?>">
<select name="selectmonth">
<option value="">- เลือกเดือน -</option>
<?PHP
for($nummonth=1;$nummonth<count($month_arr);$nummonth++)
{
?>
<option value="<?=$nummonth;?>"
<?PHP
if(date(m)==$nummonth && !isset($_GET["selectmonth"]))
{
echo"selected";
}else
if($_GET["selectmonth"]==$nummonth)
{
echo"selected";
}
?>>
<?=$month_arr[$nummonth];?></option>
<?PHP
}
?>
</select>
</form>
|
|
|
|
|
Date :
2012-09-20 23:06:42 |
By :
sakuraei |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอบคุณครับสำหรับเรื่องเดือน เหลือแต่ให้มันค้าหาเลยอะคับ ตอนเปิดมา
|
|
|
|
|
Date :
2012-09-20 23:12:11 |
By :
HelpMe |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ไม่มีโค้ดมาให้ดูจะช่วยยังไงล่ะครับ (บอกมาน้อยไป)
Code (PHP)
<?php
$sql = "select * from tb1 where month(docdate) = '{$_GET["selectmonth"]}' ";
$res = mysql_query($sql) or die(mysql_error());
while($data = mysql_fetch_row($res)){
echo $data[0];
}
?>
|
|
|
|
|
Date :
2012-09-20 23:20:43 |
By :
sakuraei |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ผมค้นหาแบบ xml อะคับ มันก็ค้นหาได้ปกติ แต่อยากได้แบบเปอดมาค้นหาตามเดือนปัจจุบันเลยคับ
Code (PHP)
for($rday=1;$rday<=$numday;$rday++)
{
$urlpast = "memberxml".$year.sprintf("%02d",$_GET["selectmonth"]-1).sprintf("%02d",$rday).".xml";
$xmlpast = load_xml_from_url($urlpast);
foreach($xmlpast->children() as $child_past)
{
$service_id_past = $child_past->{'service_id'};
$operator_past = $child_past->{'operator'};
$member_past = $child_past->{'member'};
$type_past = $child_past->{'type'};
if($operator_past == '1')
{
if($service_id_past == $_GET["selectservice"])
{
$totalmemberais_past[$rday] += $member_past;
}
if($_GET["selectservice"] == "all")
{
$totalmemberais_past[$rday] += $member_past;
}
}
}
?>
<td class="setalignright" style="background-color:<?=$bgcolor[$rday];?>;"><?=number_format($totalmemberais_past[$rday]);?></td>
<?PHP
}
|
|
|
|
|
Date :
2012-09-20 23:23:51 |
By :
HelpMe |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ตามกระทู้ที่4 อะครับ อยากมันให้มัน search ตอนเปิดหน้าขึ้นมาเลย
|
|
|
|
|
Date :
2012-09-21 09:28:11 |
By :
HelpMe |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ลอกเอา if else ง่าย ๆ มาช่วยไหม
if($_GET["selectmonth"]==""){
//ถ้าค่า get ที่รับมาเป็นค่าว่าง หรือ ไม่มีค่า คุณจะให้มันหาอะไรก็หา
//ใส่ code เงื่อนไข คิวรี่ที่ต้องการค้นหาลงไปตามต้องการ
}else{
//แต่ถ้ามีค่า GET เข้ามา หรือ ไม่เป็นตามเงื่อนไขด้านบน ก็ให้ค้นหาตามค่าที่เราต้องการจะค้น
}
|
ประวัติการแก้ไข 2012-09-21 10:10:53
|
|
|
|
Date :
2012-09-21 10:10:16 |
By :
apisitp |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 00
|