Home  >  Article  >  Backend Development  >  用PHP在页面中加入一个静态网页链接(不知道这么问是否正确),该怎么解决

用PHP在页面中加入一个静态网页链接(不知道这么问是否正确),该怎么解决

WBOY
WBOYOriginal
2016-06-13 11:49:171265browse

用PHP在页面中加入一个静态网页链接(不知道这么问是否正确)
设计思路是这样的
在一个下载页面中,点击download,后台进行请求判断
如果有权限,边进入下载地址,如果没权限,便进入一个设定好的静态网页
请问各位如何解???第一次发问,也是刚刚接触这些东西,希望解释详细些。
------解决方案--------------------
download
------解决方案--------------------

<?php<br />      if($quanxian=='admin'){<br />       header(“Location: down.php”);<br />       exit();<br />      }else{<br />  header(“Location: index.php”);<br />       exit();<br />}<br />?>

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn