// Dumps out all HTTP_GET_VARS:
function DumpHttpGetVars()
{
global $HTTP_GET_VARS;
if( $HTTP_GET_VARS )
{
reset ( $HTTP_GET_VARS );
while ( list ( $key, $val ) = each ( $HTTP_GET_VARS ) )
{
echo "$key => $val<br>\n";
if ( "array" == GetType( $val ) )
{
while ( list ( $key_child, $val_child ) = each
$HTTP_GET_VARS ) )
{
echo "|--> $key => $val<br>\n";
}
}
}
}
}
So you just call the function 'DumpHttpGetVars()'
and all of them will be printed out.
Greetinx,
Mike
Michael Rudel
- Web-Development, Systemadministration -
_______________________________________________________________
Suchtreffer AG
Bleicherstraße 20
D-78467 Konstanz
Germany
fon: +49-(0)7531-89207-17
fax: +49-(0)7531-89207-13
e-mail: mailto:[EMAIL PROTECTED]
internet: http://www.suchtreffer.de
_______________________________________________________________
-----Original Message-----
From: Tom Mathews [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, March 13, 2001 10:38 AM
Cc: PHP Windows lista
Subject: Re: [PHP-WIN] Print variables coming from a form not controled
by me...
Anything in the querystring can be translated as a php variable.
Say you have the string coming in as
...?result=1&age=23...
then in the called page/script, the querystring are already variables.
eg $result will have the value 1, $age will have the value 23...
Hope this is what you're after
Tom
Dream wrote:
> Any idea of how to get information from a form (not a form controlled by
me,
> through GET method, i.e. info coming with the URL, like this
> http://www.xxx.com/xxx.cgi?result=1&age=23&name=john) and print it
through
> php v.3?
>
> I don't know how to get the info (coming from an outside form) and pass it
> throught the php3 variables......
>
> Thanks,
>
> marc
>
> --
> PHP Windows 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]
--
PHP Windows 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]