3013 Bates Lake Road <br>
Macolm, AL 36566
*************My PHP Code ******************
$string="3013 Bates Lake Road Macolm, AL 36566";
$array_string=explode('<br>',$string);
print_r($array_string);
****************Result*******************
Array ( [0] => 3013 Bates Lake Road Macolm, AL 36566 )
*****************************************
*****Use <br/> insted of <br> try this it will given you expected result******
$array_string=explode('<br/>',$string);
print_r($array_string);
****************Result*******************
Array ( [0] => 3013 Bates Lake Road
[1] => Macolm, AL 36566
)
*****************************************
Happy coding :)