$split = explode(";;", $file);
//Build locations
$locations = array();
for($i = 1; $i < count($split); $i ++)
{
$tempSplits = explode("&", $split[$i]);
array_push($locations, $tempSplits[1]."&&".$tempSplits[2]);
}
It keeps giving me an error saying:
Notice: Undefined offset: 0 in...