DemoDownload This is a very easy to install pagination class that takes a PHP array and parses it into an array. To install into one of your personal array's start by including the main file and creating the pagination object. <?php include 'pagination.class.php'; $pagination = new pagination; ?> Once this is done, simply do the [...]
Posts Tagged ‘PHP’
Feb 27 2008
Thumbnails Generator Class
DemoDownload Requires: PHP w/ GD Library Extension. Generating thumbnails couldn't be easier. Download the file on this page and test it out. Simply include the following PHP into the top part of the page, this processes the form and calls the external class and loads it as an object. The following can be produced, all [...]
Feb 27 2008
Using Arrays
DemoDownload Arrays are one of the most used properties in php, arrays are like a container they are very simple they can can be indentified by a key or a value and the value can also be an array and that's called a multi-dimentional array. Creating an array: <? $myArray = array("Value1", "Value2"); ?> By [...]
Feb 27 2008
FunCap, Capcha Q & A Verification Text
DemoDownload funCap is a very basic tool for form protection, it's main use is for fun.For example, if you haven't got a server with the GD library extension / support then this is a perfect temporary solution. I strongly suggest you use a capcha image verification tool if you do have the GD library feature [...]
Feb 27 2008
Easy Form Builder
DemoDownload Very easy to install PHP form builder, with validation and date selection tools, the perfect convenience tool. To create a very basic form, include the form building class and then use the following code: Features Inline validation. Easy installation of date selectors. Example <?phprequire 'classes/formbuilder.class.php'; $form = new formBuilder('table'); $form->addField('text', 'Your name', true); $form->addField('text', [...]
Feb 27 2008
Captcha E-mail Hijacking Protection
DemoDownload Requires: PHP w/ GD Library Extension. Compatibility: Firefox 1 & 2 - I.E. 6 & 7. This e-mail human validation tool is as simple as it is writing an email us link, combined with the power of freeCap it creates a powerful e-mail protection tool. I have chosen to use freeCap for this project [...]
Feb 27 2008
XML to PHP
DemoDownload This is a very simple script that passes xml to php. Parse XML to PHP and use the data on your very own website. You can also use this code to include RSS news feeds. This is a simple example of how to include the xml parser: <?php include 'xmltophp.class.php'; $files = array('rss.xml'); $xmlToPHP [...]
Feb 27 2008
Code Generator
DemoDownload Code gen is a PHP / MySQL code generator. It uses a table structure to create the basic syntax for amending, updating and deleting database entries with a nice Gui, this can be adapted to fit in with your existing website. Version: 1.3 (Beta) Requirments: PHP & MySql Features: > Built on a template [...]
Feb 27 2008
Open Source Directory Lister
DemoDownload In a nut shell it's a very simple PHP directory management system. Example: http://web2.0coders.com/directory/ Gallery Requires: PHP & MySQL. Features > Easy installation process. > Dynamically included header and footer files so It can be easily integrated with your current website / style. > Administration login area with a category and links manager. > [...]