I have defined an array in php like this
<?php
$Category = array("Apparel","Grocery","Health","Gift","Footwear","Jewelry","Food & Bev");
$Shops = array("Giny & Jony","Big Bazaar","Health & Glow","Factory Outlet Store","Archies","Bata","100 Rs Shop","Silver Touch","Sri Devi Traders","Avatar","Steamzz");
$Type = array($Category,$Shops);
echo $Type[0];
?>
When i am trying to print, it says "Err:Cannot convert array into string" Is this way of declaring is correct?? If not,can you share your views.