Home >Backend Development >PHP Tutorial >求教,php如何获取其他页面声明的变量值

求教,php如何获取其他页面声明的变量值

WBOY
WBOYOriginal
2016-06-13 10:18:391132browse

求教,php怎么获取其他页面声明的变量值?
php怎么获取其他页面声明的变量值?
$u_email=short_check(get_argp("u_email")); //用户名已经记录了
$user_pws=md5(get_argp("u_pws")); //密码已经记录了
以上是那个页面声明的变量。我想在其他页面获取到。该怎么获取。我是初学php求教

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

PHP code
<?php // 启用会话session_start();// ...$_SESSION['u_email']  = short_check(get_argp("u_email")); //用户名已经记录了$_SESSION['user_pws'] = md5(get_argp("u_pws")); //密码已经记录了<div class="clear">
                 
              
              
        
            
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