Is there anyway to make IE to run php by double click on php file? By default, IE called php as a file system, not web server system like http://localhost/filename.php. How to do this? I'm using Apache. Thanks.
The answer is no. PHP is a server side technology and the code must be passed to the PHP interpreter to be parsed and returned as HTML. The server, Apache in your case, does this, but no browser can do it directly.
-geoff