如何在ppt中加入背景音乐 如何在PHP程序中防止盗链
程序员文章站
2022-05-18 16:41:44
...
example:
页面: dl.php
--------------------------------------------------------------------------------------
页面: dl.php
--------------------------------------------------------------------------------------
复制代码 代码如下:
$id = $_GET['id'];
$act = $_GET['act'];
switch($act) {
default :
case "display" : displayHTML(); break;
case "down" : down(); break;
}
function displayHTML($id) {
setcookie("visited", "true");
// print your HTML.
}
function down($id) {
if(! isset($_COOKIE['visited']) ) print "你盗联?";
$sql = "select path from TABLE where id=". $id;
//..............................
}
?>
Download Now...
以上就介绍了如何在ppt中加入背景音乐 如何在PHP程序中防止盗链,包括了如何在ppt中加入背景音乐方面的内容,希望对PHP教程有兴趣的朋友有所帮助。