php test

A

Anonymous

Guest
In the browser, go to View > Source. If you can see the PHP code there, it means your server settings are wrong and not processing the PHP files. Some details would be nice -- what server are you using, for example?
 
you need to configure apache to parse php files.
apache config
it's like
AddType application/x-httpd-php .php
AddAction application/x-httpd-php /php
 
Back
Top