View Single Post
Old 10-17-2020, 05:39 AM  
Mr Pheer
Confirmed User
 
Industry Role:
Join Date: Dec 2002
Posts: 20,885
Some PHP help, please?

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?
Mr Pheer is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote