August 19, 2008 | 3 comments | 1 Page
PrimePHP.com now offers a free google page rank tool!
Check the page ranks of up to 10 website at once, free.
Open Google Page Rank Tool
… [read more] August 19, 2008 | 0 comments | 1 Page
Do you need to extract emails from a body of text or even from a website url? This tool allows you to enter a URL to a website or to paste a body of text from which the tool will extract all available emails from and return them duplicate checked and … [read more] July 14, 2008 | 1 Page | Code-X
This is a function i found on the web that translates UTF8 unicode text in to the HTML value of the unicode. I found this very usefull in one of my past projects.
An example:
This function will translate the following text: Pr&am … [read more] July 11, 2008 | 0 comments | 1 Page
I am going to show you how to hide an email address or any string of text from spiders using a dynamic image. Now there are a few of these simple to use scripts floating around the net but what really shocks me is alot of them take no precaution in h … [read more] June 24, 2008 | 1 comments | 1 Page
This function will recursivley create a directory remoteley using FTP based on the location you give it.
Simple pass your FTP connection resource ($conn_id) and the location to create through the funciton.
UPDATE (Tuesday, July 08, 2008): You will … [read more] June 24, 2008 | 0 comments | 1 Page
If you need to remove a directory and all of its contents with the FTP functions in PHP you can use this function. Simply pass your FTP connection resource ($conn_id) and the remote directory to remove in to this function to recursivley remove a dire … [read more] June 24, 2008 | 1 comments | 1 Page
This function is a more detailed version of Detect users IP Address. In some cases the users IP address would be returned as a group of IP addresses seperated by a delimiter of sorts but then in other calls to the function for the same user the IP ad … [read more] June 24, 2008 | 0 comments | 1 Page
If you need a function to automatically pluralize a word for you in a proper english manor you can use this function. All you do is pass the word you want to turn plural through the function and the plural version will be returned.
If no match is fo … [read more] June 24, 2008 | 0 comments | 1 Page
This function will take a string of words like ThisStringRightHere and return it as This String Right Here, seperating the capitalized characters with a space. There may not be alot of uses for this function but i felt it should list it anyways.
fun … [read more] June 24, 2008 | 0 comments | 1 Page
This handy little function will automatically convert any PHP object in to a PHP array.
function object2Array($object,&$array)
{
if(is_object($object)){
foreach($object as $key=>$value) object2Array($value,$array[$key]);
}else if(is … [read more]
Displaying 0-10 of 29 total PHP Scripts & Tutorials on page 1 of 3 |