Archive for June 26th, 2008

Tutorial - How to use arrays in php

Thursday, June 26th, 2008

Using arrays in PHP can be a very powerful technique of handling data. If you are not familiar with arrays in PHP then use simple code! Example of simple code. $fruit['apples'] = 'I like apples'; $fruit['oranges'] = 'I like oranges'; $fruit['banana'] = 'I like bananas'; Example of advanced code. $fruit = array("apples" => 'I like apples', "oranges" ...