Ventura
Новичок
Помогите перевести с PHP на HTML
а как вот такой пример написать без PHP
$buf="test";
$len=strlen($buf);
header("Content-Type: application/txt");
header("Content-Length: ".$len);
header("Content-Disposition: attachment; filename=read.txt");
header("Content-Transfer-Encoding: binary");
echo $buf;
А надо что то вроде
<html>
<meta name="content-type" content="application/txt">
....
</html>
Спасибо
а как вот такой пример написать без PHP
$buf="test";
$len=strlen($buf);
header("Content-Type: application/txt");
header("Content-Length: ".$len);
header("Content-Disposition: attachment; filename=read.txt");
header("Content-Transfer-Encoding: binary");
echo $buf;
А надо что то вроде
<html>
<meta name="content-type" content="application/txt">
....
</html>
Спасибо