|
Posted by Floortje on 01/08/07 19:13
chris_fieldhouse@hotmail.com schreef:
> Hi,
>
> Hope Someone can help.
> I am migrating a web page originally written for PHP4 to PHP5,
> everything is going well, except for one problem which has me stumped!
>
>
> Part of my PHP script lists all the values passed to it in the URL and
> read using the $_GET.
>
>
> breaking it down into a simple function to demonstrate the problem.
>
>
> if(sizeof($_GET)) {
> while(list($key, $val) = each($HTTP_GET_VARS)) {
> echo $key . " : " . $val" . "<br>";
> }
Use $_GET. dont use $HTTP_GET_VARS iirc it's not used anymore (by default)
foreach ($_GET as $key=>$val)
{
echo "$key : $val <br />\n";
}
--
Arjen
http://www.hondenpage.com
Navigation:
[Reply to this message]
|