Home  >  Article  >  php教程  >  返回结果作为页面链接

返回结果作为页面链接

PHP中文网
PHP中文网Original
2016-05-26 08:18:491303browse

返回结果作为页面链接

1.testlink.php 

<div id="user">
<a href = "personcenter.php">
hello!
<?php
/*
 * testlink
 */
 if(!isset($_COOKIE[&#39;user&#39;])) {
    setcookie(&#39;user&#39;,1000000,time()+60);
 } 
 echo $_COOKIE[&#39;user&#39;];
  
?>
</a>
</div>

2. personcenter.php   

<?php
 echo "I am personcenter";
 echo &#39;
 <script language = "javascript">
     alert("跳转成功");
 </script>&#39;;
  
?>

 以上就是返回结果作为页面链接的内容,更多相关内容请关注PHP中文网(www.php.cn)!


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
Previous article:演示接口方法Next article:php cmf