Archive for May, 2008

Posted on May 31st, 2008 by by admin

Handling XML data with PHP

XML, Extensible Markup Language, is a general-purpose markup language which can be used for storing arbitrary data in a structured way. It is often used for sharing data between applications and a common usage of XML is for instance RSS feeds.
With the emerge of PHP 5, support for handling XML data has greatly improved and […]

Posted on May 24th, 2008 by by admin

Turn SQL into XML with PHP

Easily convert the results of a database query into an XML document
View this article

Posted on May 24th, 2008 by by admin

Creating a simple photo album with PHP and AJAX

In this article, you will create a simple photo album using two methods: a traditional Web application and a Sajax-powered application. You will write an album in PHP that reads the contents of a directory, showing the user a table of thumbnails. If the user clicks a thumbnail, the image will expand to full size. […]

Posted on May 21st, 2008 by by admin

Creating ZIP and TAR archives on the fly with PHP

Create ZIP and TAR archives dynamically using PHP and the PEAR::Archive_Zip and PEAR::Archive_Tar packages.
view this tutorial

Posted on May 21st, 2008 by by admin

Read your e-mail with PHP

How to read POP3 email with PHP and POP3 library
view this tutorial

Posted on May 20th, 2008 by by admin

Using JavaScript To Control Forms

Making Sure Required Fields Are Filled In
View this article

Posted on May 20th, 2008 by by admin

Search Engine-Friendly URLs

On today’s Internet, database driven or dynamic sites are very popular. Unfortunately the easiest way to pass information between your pages is with a query string. In case you don’t know what a query string is, it’s a string of information tacked onto the end of a URL after a question mark.
View this tutorial

Posted on May 20th, 2008 by by admin

Watermark Images on the Fly in PHP

How to create watermark images using PHP 4+ and GD 2.0+.
View this tutorial

Posted on May 20th, 2008 by by admin

Desktop Application Development with PHP-GTK

What is PHP-GTK?
PHP-GTK 2 is out, and with it, a fantastic means for PHP developers to build useful, reliable cross-platform desktop applications. In this tutorial, I’ll show you how to get up and running with PHP-GTK in no time and build your first desktop application.
View this article

Posted on May 19th, 2008 by by admin

Opening Url in ActionScript 3 dynamically

How to open a URL dynamically using a custom class.
View this tutorial