So I have this array like this
Code:
[location] => 2020-10-16 04:08PM -0700
City: Las Vegas
Region: Nevada
Zip Code: 89149
What I want to do, is make it into three separate variables, like this
Code:
$city = 'Las Vegas';
$region = 'Nevada';
$zipcode = '89149';
How do I do that?
