 |
|
if (isset($_GET['size'])) {
if ($_GET['size'] == 640) {
$x = 640;
$y = 480;
};
if ($_GET['size'] == 480) {
$x = 480;
$y = 360;
};
if ($_GET['size'] == 320) {
$x = 320;
$y = 240;
};
} else {
$x = 640;
$y = 480;
};
if (isset($_GET['id'])) {
$id = $_GET['id'];
} else {
$id = "";
};
if(file_exists('vidmail/' . $_GET['id'] . '.flv')) {
$id = $_GET['id'];
} else {
if(file_exists('vidmail/'.base64_decode(str_replace("-","=",$_GET['id'])).'.flv')) {
$id = base64_decode(str_replace("-","=",$_GET['id']));
} else {
$id = "";
};
};
if ($id == "") {
echo("Sorry No Video Matching Your ID If you got this message by clicking a link from a e-mail please inform the person that sent you the e-mail message thank you");
} else {
?>
|
|
|
 |
|