Hello Michael,

Wednesday, February 11, 2004, 2:48:00 AM, you wrote:

MTP> Again, no are any errors displayed or logged.  Any help would be greatly
MTP> appreciated.

Your code is fine (well, the code you posted anyway) so I'd bet the
problem is Apache related regarding the config of PHP on your system.

Simple test, stick this page on your server:

<?php
     echo phpinfo();
?>

and call it via your browser - do you get to see all the PHP settings?

If you do, then you need to check if it's just form data that isn't
being passed, again a simple script like:

<?php
     echo $_GET['value'];
?>

and call the script with: script.php?value=something

If that works, try the same thing only for POST values.

Many things to test!

-- 
Best regards,
 Richard                            mailto:[EMAIL PROTECTED]

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to