< ?php
import_request_variables ("gp");
echo $myVar;
? >
import_request_variables ( string types [, string prefix])
type參數用以指定需要導入的變數,必需使用字母‘G’、‘P’和‘C’分别表示 GET、POST 和 Cookie。字母不区分大小写,所以你可以使用‘g’、‘p’和‘c’的任何组合。
prefix參數為變數名稱前置詞,比如說有個名為gender的GET變數,並設置了"pre_"為前置詞,則將得到一個$pre_gender的全域變量.
< ?php
import_request_variables ("gp", "pre");
echo $pre_gender;
? >
沒有留言:
張貼留言