Home > Backend Development > PHP Tutorial > PHP页面跳转有关问题

PHP页面跳转有关问题

WBOY
Release: 2016-06-13 10:28:59
Original
743 people have browsed it

PHP页面跳转问题
共有两个问题
问题1:

之间的PHP代码中如何获得date的值。

问题2:

在PHP页面中,能够实现两个页面间传值但是页面不跳转?我就是想把问题1中的date值传到另一个PHP文件,但是当前页面不能跳转。

刚接触PHP不久,很多东西都不会,希望朋友们帮帮忙,不要简单的说用AJAX什么的,好心人能否直接上代码?看着简单明了,谢谢

------解决方案--------------------
1: 通过ajax请求php传值。或者表单提交传值
2:session/cookie
------解决方案--------------------
1.
ajax 当然简单点可以用jquery 封装好的 get post 到php的处理页面

2.像乔丹说的 全局变量 $_SESSION['xxx'] 或者直接 include 包含页面,当然你还能蛋痛的输出html js 再来个ajax...
或者...

memcache...

------解决方案--------------------

探讨
关键是我的另外一个页面需要这个值,如果post或者get的话页面会跳转,我不想让当前页面跳转

------解决方案--------------------
HTML code
#Ajax:$.ajax({   type: "POST",   url: "some.php",   data: "name=John&location=Boston",   success: function(msg){     alert( "Data Saved: " + msg );   }});<div class="clear">
                 
              
              
        
            </div>
Copy after login
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 Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template