程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> 關於PHP編程 >> 為什麼不能獲取PHP表單變量的

為什麼不能獲取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

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved