I have php array that like this:
$categories = array (
"audio-video" => "Audio & Video",
"books" => "Books",
"vehicles" => "Vehicles",
"watches" => "Watches"
)
How can I add another value to each element in it so it ends up something like this:
$categories = array ( // For example. This isn't the right thing.
"US01" => "audio-video" => "Audio & Video",
"US02" => "books" => "Books",
"US03" => "vehicles" => "Vehicles",
"US04" => "watches" => "Watches"
)
Is this possible? I'd like to able to access the other values of each element using the first key. So US01 will be Audio & Video or audio-video. Is this possible with php?
"US01" => "audio-video" => "Audio & Video"--- what does this mean?