求教,php怎么获取其他页面声明的变量值?
php怎么获取其他页面声明的变量值?
$u_email=short_check(get_argp("u_email")); //用户名已经记录了
$user_pws=md5(get_argp("u_pws")); //密码已经记录了
以上是那个页面声明的变量。我想在其他页面获取到。该怎么获取。我是初学php求教
------解决方案--------------------
<?php // 启用会话session_start();// ...$_SESSION['u_email'] = short_check(get_argp("u_email")); //用户名已经记录了$_SESSION['user_pws'] = md5(get_argp("u_pws")); //密码已经记录了<div class="clear">