|
|
|
ช่วยดู โค้ด ให้หน่อยค่ะ คือ หนูอยากได้ โค้ด เลือกวันที่ เดือน ปี โดยกรองปีอธิกสุรทิน ลง combo box |
|
|
|
|
|
|
|
นี่คือ code ค่ะ
1.date.php
Code (PHP)
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.1 Transitional//EN">
<html>
<head>
<title>Dropdown Date Selector</title>
</head>
<body bgcolor="#FFFFFF" text="#000000" link="#0000FF" vlink="#0000FF" alink="#FF0000">
<SCRIPT LANGUAGE="JavaScript">
<!--
var date_arr = new Array;
var days_arr = new Array;
date_arr[0]=new Option("มกราคม",31);
date_arr[1]=new Option("กุมภาพันธ์",28);
date_arr[2]=new Option("มีนาคม",31);
date_arr[3]=new Option("เมษายน",30);
date_arr[4]=new Option("พฤษภาคม",31);
date_arr[5]=new Option("มิถุนายน",30);
date_arr[6]=new Option("กรกฎาคม",31);
date_arr[7]=new Option("สิงหาคม",30);
date_arr[8]=new Option("กันยายน",30);
date_arr[9]=new Option("ตุลาคม",31);
date_arr[10]=new Option("พฤศจิกายน",31);
date_arr[11]=new Option("ธันวาคม",30);
function fill_select(f)
{
document.writeln("<SELECT name=\"months\" onchange=\"update_days(FRM)\">");
for(x=0;x<12;x++)
document.writeln("<OPTION value=\""+date_arr[x].value+"\">"+date_arr[x].text);
document.writeln("</SELECT><SELECT name=\"days\"></SELECT>");
selection=f.months[f.months.selectedIndex].value;
}
function update_days(f)
{
temp=f.days.selectedIndex;
for(x=days_arr.length;x>0;x--)
{
days_arr[x]=null;
f.days.options[x]=null;
}
selection=parseInt(f.months[f.months.selectedIndex].value);
ret_val = 0;
if(f.months[f.months.selectedIndex].value == 28)
{
year=parseInt(f.years.options[f.years.selectedIndex].value);
if (year % 4 != 0 || year % 100 == 0 ) ret_val=0;
else
if (year % 400 == 0) ret_val=1;
else
ret_val=1;
}
selection = selection + ret_val;
for(x=1;x < selection+1;x++)
{
days_arr[x-1]=new Option(x);
f.days.options[x-1]=days_arr[x-1];
}
if (temp == -1) f.days.options[0].selected=true;
else
f.days.options[temp].selected=true;
}
function year_install(f)
{
document.writeln("<SELECT name=\"years\" onchange=\"update_days(FRM)\">")
for(x=2001;x<2101;x++) document.writeln("<OPTION value=\""+x+"\">"+(x+543));
document.writeln("</SELECT>");
update_days(f)
}
//-->
</SCRIPT>
<!--
**********************************************************************
This line creates the drop down boxes for the calendar
replace FRM with the name of your form
In it you would do the following
:%s/FRM/my_form/g
-->
<form name="FRM" action="test_date.php" method="post">
<h1 align=center>Dropdown Date Selector</h1>
<br>
<br>
<table align="center">
<tr>
<td>
<SCRIPT LANGUAGE="JavaScript">fill_select(document.FRM);year_install(document.FRM)</script>
</td>
<td><input name="ok" id="ok" type="submit" value="ค้นหา"></td>
</tr></table>
<!--
*********************************************************************
-->
</FORM>
</body></html>
2.test_date.php
Code (PHP)
<?php
ob_start();
session_start();
echo "<meta http-equiv='Content-Type' content='text/html; charset=utf-8' />";
echo $day=trim($_POST['days']) ."<br>". $month=trim($_POST['months']) ."<br>". $year=trim($_POST['years']);
?>
ที่หน้า date.php มันแสดงรูปแบบเป็น เดือน/วัน/ปี อยากให้มันแสดงเป็น วัน/เดือน/ปี อ่ะค่ะ และตอนที่ request ค่าไปหน้า test_date.php อยากให้มันส่งค่าของแต่ละเดือน เช่น มกราคม == 1, กุมภาพันธ์ == 2 เพราะ หนูจะเอาไปบันทึกลงฐานข้อมูล แต่ที่ส่งมามันเป็น value ของ array อ่ะค่ะ รบกวน พี่ ๆ ผู้รู้ ช่วยหนูทีนะคะ หนูจะเอาไปทำโปรเจคจบน่ะค่ะ
Tag : PHP, MySQL, HTML/CSS, JavaScript
|
|
|
|
|
|
Date :
2013-02-14 09:35:19 |
By :
ARTTY_UTK |
View :
1148 |
Reply :
3 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ลองเอาค่าที่ได้ แล้วทดสอบเรียกฟังก์ชั่น มาใช้งานดู พอเข้าใจแล้ว ก็ปรับฟังก์ชั่น เป็นแบบที่เราต้องการได้แล้วครับ
<?PHP
function thaistart1($ttt)
{
$d1 = substr($ttt, 0, 2);
$m1 = substr($ttt, 3, 2);
$y = substr($ttt, 6, 4) ;
$y1 = $y-543;
$h1 = substr($ttt, 10, 6);
if ($ttt == "")
{
return "";
} else
{
return $y1 . "-" . $m1 . "-" . $d1;
}
}
function thaistart2($bbb)
{
$d2 = substr($bbb, 8, 2);
$m2 = substr($bbb, 5, 2);
$y3 = substr($bbb, 0, 4) ;
$h2 = substr($bbb, 10, 6);
$y4=$y3+"543";
if($m2=="01"){$m2="มกราคม";}
if($m2=="02"){$m2="กุมภาพันธ์";}
if($m2=="03"){$m2="มีนาคม";}
if($m2=="04"){$m2="เมษายน";}
if($m2=="05"){$m2="พฤษภาคม";}
if($m2=="06"){$m2="มิถุนายน";}
if($m2=="07"){$m2="กรกฎาคม";}
if($m2=="08"){$m2="สิงหาคม";}
if($m2=="09"){$m2="กันยายน";}
if($m2=="10"){$m2="ตุลาคม";}
if($m2=="11"){$m2="พฤศจิกายน";}
if($m2=="12"){$m2="ธันวาคม";}
if ($bbb == "")
{
return "";
} else
{
//return $y1 . "-" . $m1 . "-" . $d1. "" . $h1;
return $d2 . " " . $m2 . " " . $y4;
}
}
function thaistart3($sss)
{
$d3 = substr($sss, 8, 2);
$m3 = substr($sss, 5, 2);
$y3= substr($sss, 0, 4) ;
$y6=$y3+"543";
if ($sss == "")
{
return "";
} else
{
return $d3 . "/" . $m3 . "/" . $y6;
}
}
?>
|
|
|
|
|
Date :
2013-02-14 10:12:18 |
By :
apisitp |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอโทษนะคะ ไม่ทราบว่าให้หนูเอาโค้ดนี้ไปไว้ที่หน้าไหนหรอคะ คือหนูไม่เข้าใจอ่ะค่ะ
|
|
|
|
|
Date :
2013-02-14 10:40:52 |
By :
ARTTY_UTK |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
เอามาให้ดูแนวทาง การเปลี่ยนค่า yyyy/mm/dd เป็น dd/mm/yyyy หรือแปลงเป็น ชื่อเดือนไทย....
น้องต้องลองทดสอบ แล้วดึงสิ่งที่เราต้องการมาใช้ (ถ้าเรียน PHP มา น่าจะเคยผ่านเรื่องการเรียกใช้ Funcyion มาบ้าง)
เสริม : แต่ถ้ายัง งง ๆ กลับ Code น้องลอง search หาข้อมูลเรื่อง การแปลงวันที่......
ตอบ : ส่วน Code นี้เอาไว้ยังไง ง่ายสุด เอาไว้ในส่วน head
พี่เป็นคนบอกไม่หมด โดยส่วนตัวไม่บอกหมด อยากให้น้องลองทดสอบดู
แต่ถ้ามีคนใจดีกว่าพี่ เค้าจะมาบอกต่อเอง อยู่ที่ user แต่ละท่านว่าจะช่วยมากหรือน้อยครับ
|
|
|
|
|
Date :
2013-02-14 10:47:23 |
By :
apisitp |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 03
|