Hey guys,
In PHP I made an array as follows
PHP Code:
<?php
$crew = array (
"Name" => array ("Ilya"),
"age" => array (13),
"location" => array ("San Diego, Ca")
);
echo "$crew";
?>
When I test it, all that happens is it says "Array"
(without the quotes)
I was wondering why it does this and what is wrong with my array?
Thanks,
Ilya
P.S. Dont laugh at my code, i know it probably really buggy.
BTW. I googled on this for about 1 hour and even used the example from php.net and got the same results.