a great way to debug things like this is to use var_dump or print_r...
http://www.php.net/manual/en/function.var-dump.php http://www.php.net/manual/en/function.print-r.php <pre> <?php var_dump($HTTP_POST_VARS); ?> </pre> short and simple :) with kind regards, Joffrey van Wageningen On Fri, 9 Nov 2001, Hidayet Dogan wrote: > Or other way: > > while (list($key, $val) = each($HTTP_POST_VARS)) > echo "$key = $val<br>\n"; > > On Fri, 9 Nov 2001, Vladimir Galkov wrote: > > > Good day! > > Is there any way to get names of vars and values from $HTTP_POST_VARS if I > > don't know their names and (ofcourse) values? (number can be taken from -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL PROTECTED]