Hi all,
i am converting all ASP pages to PHP....I want to know what is the equivalent for "request.form()" in PHP...
thanx in advance...
-Bhasker
Printable View
Hi all,
i am converting all ASP pages to PHP....I want to know what is the equivalent for "request.form()" in PHP...
thanx in advance...
-Bhasker
$HTTP_POST_VARS["formitem"];
Depending on the configuration in your php.ini file, you can also just use $formitemname.