Home > php教程 > PHP源码 > body text

返回结果作为页面链接

PHP中文网
Release: 2016-05-26 08:18:49
Original
1363 people have browsed it

返回结果作为页面链接

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>
Copy after login

2. personcenter.php

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

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


Related labels:
source:php.cn
Statement of this Website
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
Popular Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template