In parsing a config file, i'm splitting the initial string into an array, then going to split each array element into an array itself. however, i keep getting null arrays....
$fp = @fopen("prefs.txt","r") or die("Cannot open file");
$cont = fread($fp, filesize("prefs.txt"));
$cont = split("</>", $cont);
$items = split("random char", $count[1]);
this keeps throwing nulls. any ideas?