时间:2021-07-01 10:21:17 帮助过:4人阅读
代码如下:
$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教程有兴趣的朋友有所帮助。