This is a simple example of photo-gallery script, which uses MySQL table (BLOB field) to store images. Trivial password-protection, uploading and deleting images are supported. For Apache-version of PHP there is advanced browser-caching support (using If-Modified-Since header).
This tutorial will show you how to create a script so that you can have multiple categories with unlimited sub-categories in each. They can be as deep as you want. This is very useful for organising data/items. A prime example of this is a link directory which has multiple categories. Part 2 of 2.
This example shows how you can create a remotely hosted script that will display links on a site. The script is created on a site with php scripting and the a single line of JavaScript code allows the content to be displayed on other sites , they dont require PHP. Create links once and copy to all of your sites.
This is a short tutorial to help people understand how to easily install phpNuke. There are some issues that would arise on installation and this article is trying to explain them.
Just a quick and simple web site demo. i use it for quick install, or as a back up site is i break the mysql. many reasons i wrote it. some web hosts don't have sql database. Another one is my site looks for mysql pages to load if it does not exist it looks for php pages, then static pages, if none are found it displays 404. This will cover the static page part of the function.
Need help removing un-wanted characters from your php text form strings. Here's how to strip a string of all symbols and Non-Alphanumeric characters from your forms or database with ereg_replace.
This code example shows you how to display different content to users from different countries. This can be used to implement a multi-lingual user-interface or display localized ads to users from different countries. It can also be used to block users from countries where the content is not legal.
A very simple php script that helps make your zip files available for download on your website. It can serve as the basis for a self updating photo gallery. To make a zip file available for download, simply upload it to the same directory as the php file containing this script.
This tutorial will teach you have to make your site have the option to allow the users to choose the look and feel of the site using PHP, and MySQL wrapped around a HTML template. Doing this gives you more control of your site without having to recode all yout HTML inside your PHP scripts.
This code allows you to dynamically create your tables using PHP code. It is perfect for a content management system where you do not know how many rows of data will appear at design time. The class allows you to easily add rows as they are needed without worrying about coding the table's HTML.