Codes : <label for=”breakfast”>早餐</label> <select id=”breakfast” name=”breakfast”> <optgroup label=”中式”></optgroup> <option value=”c1″>饅頭</option> <option value=”c2″>燒餅</option> <option value=”c3″>油條</option> <optgroup label=”西式”></optgroup> <option value=”w1″>鬆餅</option> <option value=”w2″>漢堡</option> <option value=”w3″>薯條</option> …
javascript 螢幕解析度偵測 – Screen Resolution Detection
用 screen.width 還有 screen.height 可以知道使用者螢幕的解析度. 在 javascript 內可以判別不同解析度導入不同頁面. 1 2 3 4 5 if ((screen.width >= 1024) && (screen.height >= 768)) { …
在網頁上顯示 iTunes Library 的 Cover Flow.
透過 iTunes Library 的 Cover Flow 你們可以知道我都聽哪些音樂 😀 雖然你們不見得有興趣知道. 終於找到這隻程式. 但是, 還不能正常顯示中文. 看誰有 flash 的編輯器幫忙一下. 如果有那位善心人士. 能提供中文顯示的 .swf 感激不盡! 謝謝! 按這裡全螢幕顯示. 我在玩這個flash. …
SDL in Linux 亂記
SDL (Simple DirectMedia Layer) 是個跨平台的多媒體 library. 無意間找到 Sol’s Graphics for Beginners 網頁看起來很有趣. 下面程式碼來自於 SDL Skeleton and Putting Pixels 網頁. #include #if defined(_MSC_VER) …
顯示 php 錯誤訊息在網頁上
基於安全考量, 強力建議別打開. 但是礙於每次都得去讀 logs 很麻煩. 所以有時後會想暫時打開. 編輯 php.ini 檔案. 找出 display_errors 把設定值改成 On ; display_errors = Off display_errors = On 然後記得重新啟動 web …
MySQL : Miscellaneous Functions
From : http://dev.mysql.com/doc/refman/5.0/en/miscellaneous-functions.html INET_ATON() Return the numeric value of an IP address INET_NTOA() Return the IP address from a numeric value INET_ATON(expr)Given …
svn restore previous version
# svn up -r 74 U test.php Updated to revision 74.
input text 強制轉大寫 or 小寫
1 2 <input type="text" name="hostname" onblur="this.value = this.value.toLowerCase();"> <input type="text" name="macaddress" onblur="this.value = this.value.toUpperCase();"><input type="text" name="hostname" onblur="this.value = this.value.toLowerCase();"> <input type="text" name="macaddress" …
關閉表單上自動完成的功能
<form method=”POST” name=”frmTest1″ action=”test1.php” autocomplete=”off”>
php SOAP 簡單的示範
SOAP 全名是 Simple Object Access Protocol. 它是以xml為交換基礎. 用於交換不同機器與不同平台之間的訊息傳遞. 如果要用同台機器架設 SOAP server & SOAP client 之間互相傳遞訊息也是可以. 不過當時弄出這套標準主要就是想解決不同平台之間的訊息傳遞. 這個協定主要建構於 http or https 上. 當然如果你使用 …