I am using the following code to populate a play list in the frontend...
$lines = file('modules/mod_flowplay/edit/file.txt', FILE_IGNORE_NEW_LINES | FILE_SKIP_EMPTY_LINES);
foreach($lines as $line)
{
list($filename, $title, $time) = explode('-', $line);
echo "<a href='$path/$filename'> $title <br /><em>$time</em>";
}
It reads the file because it shows the first clip and only the first one... after that it doesn't show a thing...
I have a Vert menu and a horizontal menu I use the code for both menus... works great in the Vertical, shows everything... the horizontal is where the problem is...
suggestions?
Many Thanks!