Learning PHP and MySQL
Example 06-02 Creating an associative array of shapes
<?php
$shapes=array('Soda Can' => 'Cylinder',
'Note Pad' => 'Rectangle',
'Apple' => 'Sphere',
'Orange' => 'Sphere',
'Phonebook' => 'Rectangle');
?>
Posted by on 08/07 at 10:18 AM