I have the following variable which has three areacodes in it:
$areacode = "305,954,786"
$array = explode(",", $areacode);
after i explode $areacode, How to get the info. how many areacodes are there in($areacode). in the above example it is 3 area codes (305, 954, 786)
$array[0] equals 305
$array[1] equals 954
$array[2] equals 786
Thank you very much for the info.