Code: Select all
while(list($key, $val)=each($HTTP_POST_VARS))
{
$a++;
etc...Any ideas on what's wrong?
Moderator: General Moderators
Code: Select all
while(list($key, $val)=each($HTTP_POST_VARS))
{
$a++;
etc...Code: Select all
reset($HTTP_POST_VARS);Code: Select all
foreach ($_POST as $key => $val) {
//Don't just do something, stand there
}