When I first install PHP 4.3.6 and run "Make test", it gives me the following error:

============================

FAILED TEST SUMMARY

Testing $argc and $argv handling (GET) [tests/basic/011.phpt]

I have looked everywhere and can't find anything on it. Any suggestions? TIA.

    I actually solved it already. I had to change my php.ini file to register_argv and argc files.
    But I still have the problem of my html pages aren't getting information correctly. In other words, forms aren't saving variables correctly. Any ideas?

      Is register_globals on or off (default is off). And are you coding for that?

        yeah. i had thought it was something with that, but the register_globals directive is set to off.

        I took this code off of a page, and it doesn't seem to be returning the values correctly at all. It looks like it follows that directive, so I don't see why it doesn't return ANYTHING. Forgive me, i'm a seriuos n00b at PHP.

        http://www.clockwatchers.com/php_email.html

          Check to make sure any values are being passed. On the second page, just do a print_r($_POST);

            I ran that command you suggested. My hello.php file has just "print_r($_POST);". When I enter in the information, it goes to the next page but the output it gives is: //Array ( ) . I am REALLY lost, and I don't know what to do. Thanks a lot for the help.

              Below are two scripts I'm using to test my php install. They are different from the ones I mentioned but I got them out of a book (PHP for the World Wide Web by Larry Ullman).
              It looks like they should be working, but the forms page returns a blank screen. In other words, it doesn't even print the text.


              FORM.PHP

              <html>
              <head>
              <title>Feedback Form</title>
              </head>
              <body>
              <form action="handle_form.php" METHOD="POST">
              Mr. <input type="radio" name="title" value="Mr." />
              Mrs. <input type="radio" name="title" value="Mrs." />
              <br />
              Name: <input type="text" name="name" size="20" />
              <br />
              </form>
              </body>
              </html>


              handle_form.php

              <html>
              <head>
              <title>Your Feedback</title>
              </head>
              <body>
              <?php
              ini_set('display_errors', 1);
              error_reporting (E_ALL & ~ E_NOTICE);
              print "Thank you {$POST['title']} {$POST['name']} for your comments. <br />
              ?>
              </body>
              </html>

                Write a Reply...