Read my articles below and learn new things on PHP, regular expression, image handling and a lot more cool stuffs. Need a custom script? Send your mail to me [at] nashruddin.com and I'll post the code here, for free!
I'm doing some projects to help webmasters maintain their sites. Some of these tools include: Link checker, Del.icio.us auto submitter and many more. One of the components I need is a web crawler/spider to build a page index, which will be used by the higher level components to perform their tasks. Read more
This tutorial shows you how to parsing tags from an HTML page. Some tags can be useful. For example, you can use the title and meta tags to generate RSS feed entry or submit the page to social bookmarks Read more
Yes, they don't like it. And since search engines are our best friends in the Internet, we hate what they hate. Check broken links in your pages with this function. Read more
Nov 4, 2008 | Tags:
PHP,
Image | 2 comments
Display random image, random banner and random avatar in your page with this code snippets. Read more
Nov 4, 2008 | Tags:
PHP,
HTTP | 13 comments
These functions are used to upload and download files over HTTP. It opens socket connection to the remote host and make HTTP requests. Use these functions to easily upload and download files within your PHP code. Read more
Nov 4, 2008 | Tags:
PHP,
HTTP | 8 comments
EasyWebFetch is a class you use to fetch a web page from your application. This class is an alternative if your server doesn't have PHP with curl enabled, or the PHP configuration doesn't allow opening URL with fopen(). This class fetch a web page by opening socket connection to remote host, so it has no dependencies and should work on any server configuration. Read more
Nov 4, 2008 | Tags:
PHP | 2 comments
This is a simple function to create pagination links; what would you need when you split large data into several pages. The function is very simple and easy to customize. Read more