Forum Moderators: coopster
Can someone point me in the direction of how to split a single address into parts like taking '123 west ave'
$address = '123 west ave';
$splitChar = strpos($address,' ');
$house = substr($address,0,$splitChar);
$street = substr($address,$splitChar+1);
...My other thought was a chunk split...