I assume from your thread title that your question is the reasons for using $_POST over $HTTP_POST_VARS.
$_POST and $HTTP_POST_VARS both will contain the same information. The difference between them is that $HTTP_POST_VARS is a normal variable whereas $_POST is superglobal -- that meaning it is available in all contexts, even inside a function. To use $HTTP_POST_VARS inside a function, you must use the global operator.
$_POST and its cousins are only available in PHP versions newer than 4.1.0
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.