Currently browsing tag

php, Page 2

使用 php 執行 system command

下面這個. 會把輸出儲存在$output 1 2 $cmd = "ls -l"; $output = shell_exec($cmd);$cmd = "ls -l"; $output = shell_exec($cmd); 還有另外一種作法用 system function . 這個在執行過程就會直接顯示出來. …

使用 php 產生 openldap sha 密碼 hash

Using php to create openldap sha password hash 應該很少有人有這樣的需求. 不過我就是有. 下面程式可以讓你產生 ldap sha 密碼 hash : 1 2 $passwd = "TOP_SECRET"; $ldap_passwd …

HOWTO Compile PECL json extensions?

Step 1 : Download json extensions from http://pecl.php.net/package/json Step 2 : Extracting json-1.2.1.tgz Step 3 : Compiling PECL json extensions by following …

jQuery POST 練習 – 簡單範例

這個主要是練習使用 jQuery 做 ajax POST 的動作.然後把結果塞回網頁上面. 先簡單寫個 helloworld 的 php. 限定它只接收 POST method. 1 2 3 4 5 6 7 <? if …

在網頁上顯示 iTunes Library 的 Cover Flow.

透過 iTunes Library 的 Cover Flow 你們可以知道我都聽哪些音樂 😀 雖然你們不見得有興趣知道. 終於找到這隻程式. 但是, 還不能正常顯示中文. 看誰有 flash 的編輯器幫忙一下. 如果有那位善心人士. 能提供中文顯示的 .swf 感激不盡! 謝謝! 按這裡全螢幕顯示. 我在玩這個flash. …