o..it's probably the problem of misconfigurfation of your httpd.conf
i configured my Apache+PHP4 as following:
ScriptAlias /php/ "c:/php/"
AddHandler php .php
AddType application/x-httpd-php .php
Action php "/php/php.exe"
if you request a .php document, Apache will
redirect it to php.exe (PHP engine),
be sure, don't put:
Action php "/php/php.exe/" # this is WRONG!