rendered paste body<?php
function video($videoid,$wat)
{
global $wpdb;
$videoinfo = $wpdb->get_row("SELECT * FROM `flv_player_videos_list` WHERE `id` = '$videoid'");
return $videoinfo->$wat;
}
function videolist()
{
global $wpdb;
$videos = $wpdb->get_results("SELECT id, name, small_thumb FROM `flv_player_videos_list` ORDER BY `flv_player_videos_list`.`id` DESC ");
$numofvids == 0;
foreach ($videos as $video) {
if ($numofvids == 5) {
echo"<div id=\"videosquare\"><a href=\"video?id=" . $video->id . "\"><img src=\"" . $video->small_thumb ."\" border=\"0\" width=\"100\" height=\"60\"></a><br />" .$video->name . "</div>\n";
$numofvids == 0;
}
else {
$numofvids++;
echo"<div id=\"videosquare\"><a href=\"video?id=" . $video->id . "\"><img src=\"" . $video->small_thumb ."\" border=\"0\" width=\"100\" height=\"60\"></a><br />" .$video->name . "</div>";
}
}
}
?>