Vishesh Kaul wrote: > now i have installed new RH9 on my system and started with PHP 4.2.2 > and Apache 2.0.40 again.. but this time i am encountering this > error message when i am trying to POST data using forms. (<form > action=$PHP_SELF method=post>) > > "The requested URL /method=post was not found on this server."
Your $PHP_SELF is empty, and as you are not using double quotes, the browser uses "method=post" as action URL. See <http://www.php.net/manual/en/configuration.directives.php#ini.register-globals>. And btw PHP 4.2.2 is very old. Regards... Michael