I have very real problem.

In my PWS on WIN98 and PHP 4.2.2 as CGI binary (php.exe), I can not pass the parameters from URL line, nor from get method forms.

index.php?id=2

In script I get undefined variable notice for
$id
and undefined index for $_GET["id"]

How to pass, even only one parameter from ouside the script? I do not wont set a cookie.

In php.ini file register_globals are set, of course.

Help!!!

    First, use $_GET["id"] and turn register_globals off.

    People have run up against buggy behaviour with PWS before (one found tht fiddling with his php.ini worked - switching the -dist version for the -optimized one). The general cure however has been to ditch PWS in favour of a more robust server like Apache (it's like the difference between Microsft Paint and the Gimp).

      I have already tried it and get always "undefined index id" notice.
      No parameters passed from url at all.
      Where is the problem?
      Maybe in PWS, but I do not know how to configurate it. I did not find any setting concerning parameter passing.
      Help once more!!!

        Well, if it's a bug in PWS, then messing with configuration settings probably won't fix it.

        Solution: Get A Real Server.

          Write a Reply...