Recent Posts
extjs.pilotwarezhk
Return To Blog Listing
a personal learning experience in SEO, PHP, ExtJS, LAMP, etc...
Recent Posts Tagged With 'mt_rand'
Using PHP to show a random picture in a folder
Weeks ago, I received a request from one of the editors, they prepared couple banners for their blog, and they want to show them randomly. Here’s how I do it. <?php function random_banner(){ $imglist = ”; // imgfolder indicates whe...
Generate random password in PHP
For our CMS, I use a custom script to generate a random password for all users. Here is the PHP function I use: function generatePassword ( $length = 8 ) { // start with a blank password $password = “”; // define possible characters $poss...
