|
|
|
ถามเรื่องการบันทึกวันเดือนปี ไม่ทราบว่าจะเขียนโค้ดให้วันเดือนปี บันทึกลงฐานข้อมูลอย่างไรค่ะ |
|
|
|
|
|
|
|
function DateSelector($inName, $useDate=0)
{
/* create array so we can name months */
$monthName = array(1=> "January", "February", "March",
"April", "May", "June", "July", "August",
"September", "October", "November", "December");
/* if date invalid or not supplied, use current time */
if($useDate == 0)
{
$useDate = Time();
}
/* make month selector */
echo "<SELECT NAME=" . $inName . "Month>\n";
for($currentMonth = 1; $currentMonth <= 12; $currentMonth++)
{
echo "<OPTION VALUE=\"$currentMonth\"";
echo intval($currentMonth);
echo "\"";
if(intval(date( "m", $useDate))==$currentMonth)
{
echo " SELECTED";
}
echo ">" . $monthName[$currentMonth] . "\n";
}
echo "</SELECT> -
";
/* make day selector */
echo "<SELECT NAME=" . $inName . "Day>\n";
for($currentDay=1; $currentDay <= 31; $currentDay++)
{
echo "<OPTION VALUE=\"$currentDay\"";
if(intval(date( "d", $useDate))==$currentDay)
{
echo " SELECTED";
}
echo ">$currentDay\n";
}
echo "</SELECT> - ";
/* make year selector */
echo "<SELECT NAME=" . $inName . "Year>\n";
$startYear = date( "Y", $useDate);
for($currentYear = $startYear - 5; $currentYear <= $startYear+5;$currentYear++)
{
echo "<OPTION VALUE=\"$currentYear\"";
if(date( "Y", $useDate)==$currentYear)
{
echo " SELECTED";
}
echo ">$currentYear\n";
}
echo "</SELECT>";
}
*******************************************************
ไม่ทราบว่าจะเขียนโค้ดให้วันเดือนปี บันทึกลงฐานข้อมูลอย่างไรค่ะ
Tag : - - - -
|
|
|
|
|
|
Date :
24 ธ.ค. 2550 09:14:22 |
By :
mai |
View :
1606 |
Reply :
3 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ใช้คำสั่ง insert into ครับ ให้ลง โดยตอนบันทึกใช้รูปแบบ Y-m-d
ตัวอย่างครับ
$sql="insert into tbl_todayd value('' , '$year-$month-$day')";
mysql_query($sql,$Conn);
|
|
|
|
|
Date :
24 ธ.ค. 2550 09:30:08 |
By :
adaaugusta |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ไงลองใช้ตัวนี้ดูครับ
ตัวนี้จะเก็บเวลาด้วยครับ
$today=date('Y-m-d G:i:s');
ตัวนี้วันอย่างเดียว
$today=date('Y-m-d');
|
|
|
|
|
Date :
25 ธ.ค. 2550 10:27:17 |
By :
manop_cs |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอบคุณค่ะ
|
|
|
|
|
Date :
25 ธ.ค. 2550 13:58:07 |
By :
mai |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 05
|