Feed Rss



Posts Tagged ‘Tutorials

Feb 27 2008

Sorting Arrays

category: PHP,Tutorials author:

You can sort an array in many different ways using PHP using many different functions, here are a few. sort($array); asort($array); ksort($array); These three different sorting functions all can be sorted in ascending order. The reverse functions are: rsort($array); arsort($array); krsort($array);

tag: , ,


Feb 27 2008

Easy Form Builder

category: PHP,Projects author:

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', 'Your [...]

tag: , ,