List of Ajax, PHP and CSS Tutorials

Here are some noteworthy tutorials from Sanwebe.com, which I am sure will help contribute to your Web development projects. Most tutorials are pretty basic, and some are intermediate level, but not that mind boggling. Depending on your cognitive abilities you should be able to grasp them very easily. I’ll be updating this list often so do comeback time to time.

PHP Cache Dynamic Pages To Speed Up Load Times

If your website receives a good amount of traffic every day and your web pages are loading slow, you might want to consider implementing some sort of caching mechanism on your website to speed up page loading time. Because as we all know that each client-server request consists of many queries, loops, calculations, database queries etc. these all add up to processing time, which eventually increases page loading time. The simplest way to avoid all these is to create cache files and store them in a separate directory, which can later be served as fast loading static pages instead of dynamically generated pages.

Creating RSS XML feed Using PHP SimpleXML

In previous article I had created a RSS feed using PHP DOMDocument class, and today we are going to use PHP SimpleXML to create the same. PHP SimpleXML can be used to manipulate XML documents easily, it can read data from XML files/strings, and edit nodes and attributes. SimpleXML functions are part of PHP 5+, so everyone using PHP 5 and up requires no additional extensions to use its functions.

Creating RSS XML feed with PHP DOMDocument

RSS makes it possible to syndicate latest website contents throughout the web seamlessly, whether you have a news website, blog or a normal website, you can break it down into discrete items and syndicated them via RSS. If you are using WordPress or any other popular CMS, you will find its own RSS system. But creating your custom RSS feed is also fairly easy using PHP.