Re: [PHP] GET and POST variables name

2004-05-15 Thread Daniel Clark
http://www.php.net/manual/en/control-structures.foreach.php Try this. echo "GET:"; foreach($_GET as $key => $value) { echo "$key = $value "; } >>i know it could be a stupid problem, but i need a help and i hope u could be >>generous with me :). >>this is my code, it writes the list of

Re: [PHP] GET and POST variables name

2004-05-15 Thread Marek Kilimajer
foreach($_POST as $key => $parole) { echo "$key = $parole "; } Dino Costantini wrote: i know it could be a stupid problem, but i need a help and i hope u could be generous with me :). this is my code, it writes the list of POST and GET variables. "; foreach($_GET as $parole) { echo "Parola =

Re: [PHP] GET and POST variables name

2004-05-15 Thread Tom Rogers
Hi, Sunday, May 16, 2004, 1:47:44 AM, you wrote: DC> i know it could be a stupid problem, but i need a help and i DC> hope u could be generous with me :). DC> this is my code, it writes the list of POST and GET variables. DC> echo "GET:"; DC> foreach($_GET as $parole) DC> { DC> echo "Parola =

[PHP] GET and POST variables name

2004-05-15 Thread Dino Costantini
i know it could be a stupid problem, but i need a help and i hope u could be generous with me :). this is my code, it writes the list of POST and GET variables. "; foreach($_GET as $parole) { echo "Parola = $parole "; } echo "POST:"; foreach($_POST as $parole) { echo "Parola = $parole "; } ?>