http://www.easyphp.org/
結合apache php mysql phpmyadmin..
目前版本是 ver 1.7 ~ ver 1.8 beta...
不過好像不支援中文?
iceis 發表在 痞客邦 留言(0) 人氣(271)
http://tw.php.net/manual/tw/introduction.php
PHP 是甚麼?
PHP ("PHP: Hypertext Preprocessor" 的首字母縮略詞) 是一種被廣泛使用、多用途的
開放源碼腳本語言,特別適合於網頁的開發,並可內嵌入 HTML 中
iceis 發表在 痞客邦 留言(0) 人氣(134)
INSERT INTO table_name VALUES (.., md5('$passwd'), ..)
驗證輸入的密碼時,一樣取md5加密後的密碼,
再跟資料庫中的密碼做驗證....
iceis 發表在 痞客邦 留言(0) 人氣(742)
ex.
header("Content-type:application/vnd.ms-excel");
header("Content-Disposition:filename=test.xls");
echo "姓名 電話";
iceis 發表在 痞客邦 留言(0) 人氣(4,537)
作者 ast9869 (ast9869) 站內 PHP
標題 Re: [轉錄]無名小站相簿的上傳機制怎麼做到的啊?
時間 Mon Jul 26 23:05:46 2004
───────────────────────────────────────
※ 引述《Jerr (老嬉皮)》之銘言:
iceis 發表在 痞客邦 留言(1) 人氣(117)
$var = "var";
echo " $var ";
echo " '$var' ";
echo ' $var '
echo ' "$var" '
iceis 發表在 痞客邦 留言(0) 人氣(680)
[摘自師大資訊白色情迷 smart版]
處理含 ASCII 92 字元之文字輸入值
問題說明
中文字係由兩個字元所組成,第一個字元大於 ASCII 127,第二個字元則不限。
在許多程式語言之中,ASCII 92()被當作是跳脫(escape)字元,在程式中需要輸出特定字元時,
iceis 發表在 痞客邦 留言(0) 人氣(1,278)
Error Control Operators
PHP supports one error control operator: the at sign (@). When
prepended to an expression in PHP, any error messages that might
be generated by that expression will be ignored.If the track_errors feature is enabled, any error message
generated by the expression will be saved in the variable $php_errormsg.
This variable will be overwritten on each error, so check early if
you want to use it.
iceis 發表在 痞客邦 留言(0) 人氣(49)
date("M d, Y", filemtime("DIRorFILEname"));
http://tw2.php.net/manual/tw/function.filemtime.php
iceis 發表在 痞客邦 留言(0) 人氣(184)
The validator doesn't like the "&" in there since the correct format would be &
You can tell PHP to use & as the separator by using
ini_set("arg_separator.output","&");
http://www.titleofsite.com/archives/000024.html
iceis 發表在 痞客邦 留言(0) 人氣(22)