Articles:
Functiont to get full url of a Web Page
/* ********************************************** functiont to get full url of a Web Page @param NULL NULL @return String $pageURL *********************************************** */ function complete_url() { $pageURL = (@$_SERVER["HTTPS"] == "on") ? "https://" : "http://"; if ($_SERVER["SERVER_PORT"] != "80") $pageURL .= $_SERVER["SERVER_NAME"].":".$_SERVER["SERVER_PORT"].$_SERVER["REQUEST_URI"]; else $pageURL .= $_SERVER["SERVER_NAME"].$_SERVER["REQUEST_URI"]; return $pageURL; } . . .
functiont to genrate a ramdom string of desirable length
This function will generate a random string of desirable length from the specified characters /*********************************************** functiont to genrate a ramdom string of desirable length @param int $len @return String $rndString ***********************************************/ public function genRandomString($len) { $length = $len; $characters = "0123456789abcdefghijklmnopqrstuvwxyz"; $rndString = ""; for ($p = 0; $p < $length; $p++) { $chr_len=strlen($characters); $rand_no=mt_rand(0,$chr_len); $rndString .= $characters[$rand_no]; } return $rndString; } . . .
Functiont to genrate Super encrypted password
This function uses all the hash function available in your php version to encrypt password string /*********************************************** functiont to genrate Super Solid encrypted password @param String $str @return String $rndString ***********************************************/ public function generate_encrypted_password($pswrd_str) { $data = $pswrd_str; foreach (hash_algos() as $v) { $r = hash($v, $data,false); $data=$r; // printf("%-12s %3d %s\n", $v, strlen($r), $r); } return $data; } . . .
Creating Wordpress website , without any knowledge of HTML and PHP
If you want to create a wordpress website for your blog or personal website , but you don't have any knowledge of HTML, CSS and PHP , then this website is going to be very helpfull for u to create custum themes for your wordpress website , you just have to do some changes in website by just using there GUI tools and then you can download your theme to use. http://www.lubith.com . . .
Over 5800 Fresh Proxies | 09-26-2011
Full list of proxy servers updated on 09-26-2011 , each proxy working properly Download. . .
  1     2     3     4     5  
Most Popular Articles
BitTorrent – Just the Simplest Way to Share Files
viruse to Disable USB Ports using C language
23 Ways To Speed WinXP, Not only Defrag
The Pale Moon Project - Custom Build Faster Firefox Browser For Modern CPUs
Create your own proxy server for free
Bing Readies To Get Peppier - Animated Backgrounds, Slideshows And More HTML 5 and CSS 3 Goodies In
How to Add Windows XP to Windows 7 Boot Manager
Google Talk - How To Chat With Multiple ID's On Same Computer

