Re: [PHP] get names of vars $HTTP_POST_VARS?

2001-11-09 Thread Joffrey van Wageningen
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 short and simple :) with kind regards, Joffrey van Wageningen On Fri, 9 Nov 2001, Hidayet Dogan wrote: > Or other wa

Re: [PHP] get names of vars $HTTP_POST_VARS?

2001-11-09 Thread Hidayet Dogan
Or other way: while (list($key, $val) = each($HTTP_POST_VARS)) echo "$key = $val\n"; Hidayet Dogan [EMAIL PROTECTED] Pleksus Bilisim Teknolojileri D.T.O. A.S. --

Re: [PHP] get names of vars $HTTP_POST_VARS?

2001-11-09 Thread Stefan Rusterholz
1 253 19 56 W3 www.interaktion.ch -- - Original Message - From: "Vladimir Galkov" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, November 09, 2001 1:36 PM Subject: [PHP] get names of vars $HTTP_POST_VARS? > Good day! > Is there

[PHP] get names of vars $HTTP_POST_VARS?

2001-11-09 Thread Vladimir Galkov
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 count($HTTP_POST_VARS) ) ... This is nesesery to write a function wich write log of user's work with remote filesystem. Vladimir Galkov