Просмотр файла video/file.php

Размер файла: 2.39Kb
<?php
#-----------------------------------------------------#
#          ********* WAP-MOTORS *********             #
#             Made by   :  Hoooch                     #
#               E-mail  :  [email protected]             #
#             WAP-Site  :  http://vira.h2m.ru         #
#                  ICQ  :  77-148-55                  #
#  Вы не имеете право вносить изменения в код скрипта #
#        для его дальнейшего распространения          #
#-----------------------------------------------------#	
require_once "../includes/start.php";
require_once "../includes/functions.php";
require_once "../includes/header.php";
include_once "../themes/".$config['themes']."/index.php";

if (!empty($_GET['fid'])) {
$fid=htmlspecialchars(trim($_GET['fid']));
if (!is_numeric($fid)) { exit; }
$file=glob("fid/*.$fid.txt");
$file=$file[0];
preg_match('|^fid\/([0-9]+)\.([0-9]+)\.txt$|',$file, $out);
$pid=$out[1];
$file=file($file);
@$title=trim($file[0]);  // Имя файла
@$scrin=trim($file[1]); // Адрес скриншота
@$min=trim($file[2]);  // Длительность мин.
@$sec=trim($file[3]);  // Длителность сек.
@$link=trim($file[4]); // Адрес файла
@$size=trim($file[5]); // Вес в кб
@$text=trim($file[6]);  // Описание


echo '<div class="header"><center>
'.$title.'<br/></center></div>
<div class="row_hard">
';
if (!empty($text)) {
echo 'Описание: '.$text.'<br/>';
}
if (!empty($scrin)) {
echo 'Скриншот: <img src="'.$scrin.'" alt=""/><br/>';
}
echo 'Длительность: ';
if (!empty($min)) {
echo $min.' мин. ';
}
if (!empty($sec)) {
echo $sec.' сек.<br/>';
}
if (!empty($size)) {
echo 'Размер: '.$size.' кб<br/>';
}
if (!empty($link)) {
echo '&#187; <a href="'.$link.'">Скачать</a><br/>';
}








echo '</div>
';

}
list($generic_newmsec,$generic_newsec)=explode(chr('32'),microtime());
echo '
<p>';
if (!empty($pid)) {
echo '- <a href="index.php?pid='.$pid.'">К файлам</a><br/>';
}
echo '<a href="index.php">В начало</a><br/>';


echo '<a href="http://vira.h2m.ru">by Hooch</a><br/>'; 
echo '<img src="../images/img/homepage.gif" alt="image" /> <a href="../index.php?'.SID.'">На главную</a> '; 
include_once "../themes/".$config['themes']."/foot.php";
?>