Follow along with the video below to see how to install our site as a web app on your home screen.
Бележка: This feature may not be available in some browsers.
<?php
$parolata = "password"; // тук пишеш паролата
$file = "Files/fail.rar"; // тук файла и пътя до него
// Надолу няма смисъл да бараш //
if (isset($_POST['down']))
{
if ($_POST['pass'] == $parolata)
{
header("Pragma: public");
header("Expires: 0");
header("Cache-Control: must-revalidate, post-check=0, pre-check=0");
header("Cache-Control: private",false);
header("Content-Disposition: attachment; filename=\"".basename($file)."\";");
header("Content-Transfer-Encoding: binary");
header("Content-Length: ".filesize($file));
readfile($file);
}
else
{
echo "Грешна парола!<br /><a href=\"?\">Върни се</a> и опитай пак";
}
}
else
{
?>
<form action="" method="post">
Парола за сваляне: <input type="password" name="pass" size="20" />
<input type="submit" name="down" value="Свали" />
</form>
<?php
}
?>
Order Deny
Deny from all