View Single Post
Old 10-17-2020, 06:09 AM  
k0nr4d
Confirmed User
 
k0nr4d's Avatar
 
Industry Role:
Join Date: Aug 2006
Location: Poland
Posts: 9,228
$location="2020-10-16 04:08PM -0700
City: Las Vegas
Region: Nevada
Zip Code: 89149";

$replace= array("City: ","Region: ","Zip Code: ");
$location = str_replace($replace,"",$location);
$arr = explode("\n",$location);
$city = trim($arr[1]);
$region = trim($arr[2]);
$zipcode = trim($arr[3]);
k0nr4d is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote