You can post now and register later.
If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.
Здравствуйте, подскажите какой тег использовать для увеличения значения, пример на картинке.
Вроде, про такой тег я слышала. Если есть тег прогресс бар, значит и такое должно быть.
Question
solos
файл index.php
____________________________________________________
<?php
Error_Reporting(E_ALL & ~E_NOTICE);
function Downloadfile ($filename)
{
$handle = fopen($filename, 'rb');
if ($handle === false)
{
return false;
}
while (!feof($handle))
{
print (fread($handle, 1024*8));
ob_flush();
flush();
}
fclose($handle);
return true;
}
Downloadfile("z:/home/test1.ru/www/file/1.rar");
?>
____________________________________________________
Выкидает страницу с содержимым архива.
Мне нужно чтобы выкидало окошко сохранить файл. Что нужно дописать?
Link to comment
Share on other sites
6 answers to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.