程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> PHP綜合 >> 一個程序下載的管理程序(三)

一個程序下載的管理程序(三)

編輯:PHP綜合
//後台程序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(" "," ",$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> </p>
</html>
<?}?>
<?if($action=="mail")
{
mail("[email protected]","該鏈接有問題,請更正","id=$id;程序名=$title;類別=$type","From:[email protected]:[email protected]");
header("location:download.php?action=show&type=$type");
}
?> 
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved