I have a file that has several lines of data. I would like every 33 lines of data to be grouped into an array, after that data is grouped into an array I'd like to colon delimitate the data into sub arrays like so:
<?
print_r(explode(':', $line));
?>
How do I prep the every 33 lines of data in the file to get ready to become my $line variable in the snippet above?