function printVideoFeed($videoFeed,$phone) {
  if ($phone == 'webkit') { echo("<ul class='edgetoedge'>"); } else if ($phone == 'touch') { echo("<ul class='results'>"); }
  foreach ($videoFeed as $videoEntry) {
    printVideoEntry($videoEntry,$phone);
  }
  if (($phone == 'webkit') || ($phone == 'touch')) { echo("</ul>"); }
}
Beispiel #2
0
function printVideoFeed($videoFeed)
{
    $count = 1;
    foreach ($videoFeed as $videoEntry) {
        printVideoEntry($videoEntry);
        $count++;
    }
}
function printVideoFeed($videoFeed)
{
    $count = 1;
    foreach ($videoFeed as $videoEntry) {
        echo "\n<br><br>Entry # " . $count . "\n";
        printVideoEntry($videoEntry);
        echo "\n";
        $count++;
    }
}