拆除各類房型技巧純熟,快速有效率 免費現場估價,值得您信賴 | 找裝潢工程機會,線上超過上百筆精選裝潢案件,無論接案新手、專職SOHO 接案工作室、公司,都能在這找到 |
[php] 用php 寫日曆程式 |
房東:jack 發表時間:2010-10-05 |
//<-------GET方法提交變更月份,年份;開始--------> if($_GET[year]=="") { $_GET[year]=date("Y"); } if($_GET[month]=="") { $_GET[month]=date("n"); } $month=$_GET[month]; $year=$_GET[year]; //<-------GET方法提交變更月份,年份;?束--------> if($year<1971)//年度最少到1971年,小於1971年,則需回到今年的日曆 { echo " 已至尾端,請回原頁面 ";echo "回原頁面"; //$_SERVER[PHP_SELF]為執行伺服器預定變數,當前正在執行腳本的文件名。 exit(); } ?>
|
|
廣利不動產-板橋在地生根最實在--新板特區指名度最高、值得您信賴的好房仲 完整房訊,房屋、店面熱門精選物件,廣利不動產 優質仲介,房屋租賃、買賣資訊透明,交易真安心! 廣利不動產-新板特區指名度最高、值得您信賴的好房仲 您的托付,廣利用心為您服務 |
1 樓住戶:小白 發表時間:2010-10-05 |
//calendar.inc - Simple Calendar Script // Programmer: James V. Forget - [email protected] // Place this script on your web server then... // Include the following code on the PHP webpage // where you want the calendar to appear... // include('calendar.inc') $today = getdate(time()); //get today's date for($i=0;$i<37;$i++){ //initialize calendar array $days[$i] = ""; //5 rows of 7, 1 row of 2 } $timestamp = mktime(12,0,0,$today["mon"],1,$today["year"]); //1st day of month $temp = getdate($timestamp); $i = $temp['wday']; //first day of week in calendar - SUN == 0 while(TRUE){ //fill-in days for calendar $cday = getdate($timestamp); if($cday['mon'] != $today['mon']) break; //break on new month $days[$i] = $cday['mday']; //assign date $timestamp += 86400; //add one day $i++; //increment array index } //start building calendar echo " {$today['month']} {$today['year']}
?> |
姓名: | |||
佈告內容: | |||
其他選項: | |||
|