wenson小庄

导航

php下载

复习一下下载有关的资料!

有关于调转:

一、windons的跳转是:location=“two.html”

二、js的跳转<script>window.location="two.html"</script>

......

 

 

下载需要要有头部信息!

eg:

demo.php

<?php

header("Content-Type:text/html;charset=utf-8");

echo '<h1>wwwwwwwwwwwwww </h1>';
 
echo '<script>window.location="two.html"</script>';
echo "这是一个中国字";

down.php

<?php
    
    header("Content-Type:image/gif");
    header('Content-Disposition: attachment; filename="logo3333.gif"');
    header('Content-Length:'.filesize("logo.gif"));
    readfile("logo.gif");
    

 

 

posted on 2013-09-17 17:43  小庄1  阅读(219)  评论(0编辑  收藏  举报