|
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.
$most = getMostViewed(15,0, $type);
echo "
Category: ". getCategory($_GET['category']). "";
?>
|
.
|
|