Hi
I'm still having trouble understand arrays since I join Daniweb a few months ago. I thought I got a handle it but it seems I need to practice more and write more arrays correctly.
This the issue I'm having I can't echo
the words
<?php
$printer_machine = array("Copier", "Inkjet", "Laser", "Photo");
echo "$printer_machine: " .$printer_machine[3]. "<br>";
$type_machine = array('copier' => "Copier & Multipurpose",
'inkjet' => "Inkjet Printer",
'laser' => "Laser Printer",
'photo' => "Photographic Paper");
echo "$type_machine: " .$type_machine['photo']. "<br>";
?>
Any Suggestions and explanation will help. I appreciate it. Thanks!