|
include "menu.include"; ?>
|
- |
Video
| . |
if(isset($_GET['category']))
$type=$_GET['category'];
else
$type=-1;
?>
|
// get the user name, from user name you can get the user id.
//$userId = $_SESSION['user5237Id'];
//get the latest videos, show latest 15 videos. and a link to all
//$latest = getLatest(15,0, $type);
//get the most viewed videos.
$perPage=isset($_GET['per_page'])?$_GET['per_page']:15;
$startNumber=isset($_GET['start_number'])?$_GET['start_number']:0;
$most = getMostViewedPaged($perPage, $startNumber, $type);
echo "
Category: ". getCategory($_GET['category']). "";
?>
Most Popular
echo $most;
?>
|
|
.
|
|