网站地图    收藏   

主页 > php专栏 > php综合实列 >

一个程序下载的管理程序(三)-PHP实例

来源:自学PHP网    时间:2014-12-25 09:57 作者: 阅读:

[导读] 一个程序下载的管理程序三,//后台程序sign.php源代码如下:lt;?requirequot;../opendata.phpquot;;?gt;lt;?if$action==quot;signquot;{if$say==quot;quot;||$title==quot;quot;||$url==quot;quot;||$size==quot;quot;{headerquot;location...

//后台程序sign.php源代码如下:
<?require("../opendata.php");?>
<?
if($action=="sign")
{
if($say==""||$title==""||$url==""||$size=="")
{
header("location:../message.php?message=资料不完整&redirect=download/download.php?page=0%26action=publish");
break;
}       $say=htmlspecialchars($say);
        $title=htmlspecialchars($title);
        $say=str_replace(" ","&nbsp",$say);
        $say=nl2br($say);
        $now_time=getdate();
        $ttime=$now_time["year"]."-".$now_time["mon"]."-".$now_time["mday"]." ".$now_time["hours"].":".$now_time["minutes"].":".$now_time["seconds"];
        $str="insert into download (title,say,click,ttime,url,size,type) values ('".$title."','".$say."',0,'#".$ttime."#','".$url."','".$size."',".$type.")";
        MySQL_query($str,$cn);


header("location:download.php?page=0&action=show");
}
if($action=="download")
{
     mysql_query("update download set click=click+1 where id=".$id,$cn);

?>
<?
header("Content-type: text/html");
if(header("location:$url"))
echo "error";
?>
<html>
<p align="center"><a href="<?=$url?>">如果你的浏览器没有弹出下载窗口,请点这里</a></p>

<p align="center"><a href="javascript:self.close()">关闭窗口</a></p>
<p>&nbsp;</p>
</html>
<?}?>
<?if($action=="mail")
{
mail("khj99@163.net","该链接有问题,请更正","id=$id;程序名=$title;类别=$type","From:khj99@163.netnReply-To:khj99@163.netn");
header("location:download.php?action=show&type=$type");
}
?> 

自学PHP网专注网站建设学习,PHP程序学习,平面设计学习,以及操作系统学习

京ICP备14009008号-1@版权所有www.zixuephp.com

网站声明:本站所有视频,教程都由网友上传,站长收集和分享给大家学习使用,如由牵扯版权问题请联系站长邮箱904561283@qq.com

添加评论