当前位置:编程学习 > php >>

为什么不能获取PHP表单变量的?

答案:如果大家使用PHP4.2版本或者以上的请看这里。
设置register_globals = on 或者
加入以下代码:
// allow script to work with registerglobals off
if ( function_exists('ini_get') ) {
$onoff = ini_get('register_globals');
} else {
$onoff = get_cfg_var('register_globals');
}
if ($onoff != 1) {
@extract($HTTP_SERVER_VARS, EXTR_SKIP);
@extract($HTTP_COOKIE_VARS, EXTR_SKIP);
@extract($HTTP_POST_FILES, EXTR_SKIP);
@extract($HTTP_POST_VARS, EXTR_SKIP);
@extract($HTTP_GET_VARS, EXTR_SKIP);
@extract($HTTP_ENV_VARS, EXTR_SKIP);
}

详细参考这里:
http://www.21php.com/tutorial/tutorial.php?tid=21

相关讨论请看这里:
http://www.21php.com/forums/showthread.php?s=&postid=588#post588
http://www.21php.com/forums/showthread.php?s=&postid=400#post400

上一个:解决不能通过mysql.sock连接MySQL问题的办法
下一个:PHP两种安装模式的区别

CopyRight © 2012 站长网 编程知识问答 www.zzzyk.com All Rights Reserved
部份技术文章来自网络,