Articles:


Functiont to get full url of a Web Page

by Administrator on 18-03-12

/* ********************************************** 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

by Administrator on 18-03-12

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

by Administrator on 18-03-12

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

by Administrator on 07-02-12

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

by Administrator on 26-09-11

Full list of proxy servers updated on 09-26-2011 , each proxy working properly Download. . .




  1     2     3     4     5