目前分類:PHP (10)

瀏覽方式: 標題列表 簡短摘要
http://www.easyphp.org/
結合apache php mysql phpmyadmin..
目前版本是 ver 1.7 ~ ver 1.8 beta...
不過好像不支援中文?

iceis 發表在 痞客邦 留言(0) 人氣()

http://tw.php.net/manual/tw/introduction.php
PHP 是甚麼?
PHP ("PHP: Hypertext Preprocessor" 的首字母縮略詞) 是一種被廣泛使用、多用途的
開放源碼腳本語言,特別適合於網頁的開發,並可內嵌入 HTML 中

iceis 發表在 痞客邦 留言(0) 人氣()

INSERT INTO table_name VALUES (.., md5('$passwd'), ..)
驗證輸入的密碼時,一樣取md5加密後的密碼,
再跟資料庫中的密碼做驗證....

iceis 發表在 痞客邦 留言(0) 人氣()

ex.

iceis 發表在 痞客邦 留言(0) 人氣()

作者 ast9869 (ast9869) 站內 PHP
標題 Re: [轉錄]無名小站相簿的上傳機制怎麼做到的啊?
時間 Mon Jul 26 23:05:46 2004
───────────────────────────────────────

iceis 發表在 痞客邦 留言(1) 人氣()

$var = "var";
echo " $var ";
echo " '$var' ";
echo ' $var '
echo ' "$var" '

iceis 發表在 痞客邦 留言(0) 人氣()

[摘自師大資訊白色情迷 smart版]
處理含 ASCII 92 字元之文字輸入值

問題說明
中文字係由兩個字元所組成,第一個字元大於 ASCII 127,第二個字元則不限。

iceis 發表在 痞客邦 留言(0) 人氣()

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

iceis 發表在 痞客邦 留言(0) 人氣()

date("M d, Y", filemtime("DIRorFILEname"));
http://tw2.php.net/manual/tw/function.filemtime.php

iceis 發表在 痞客邦 留言(0) 人氣()

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) 人氣()