I have installed Apache. Its working fine.
I have also PHP 5.2.1 installed.
I have enabled load module in http.conf also
I have also added following in mime.types
AddType application/x-httpd-php php
AddType application/x-httpd-php-source phps
But Still I am .php page along with php code. It gets executed but also shows the php code same as written. What else configuration remaining?
Solutions: Add SetHandler in http.conf file
<FilesMatch \.php$>
SetHandler application/x-httpd-php
</FilesMatch>