I have apache, mysql, php installed manually on windows xp.
How can I make my dreamweaver configurable for php (so it can run php)..
I add this line:
<
Dreamweaver does not run PHP itself afaik. You need a Webserver that is able to execute PHP scripts (on Windows I recommend XAMPP apachefriends.org for local testing)
http://localhost
In the Business catalyst panel(to the bottom right), Right click the connection - New file. Rename it extension .php and your good to go.
UPDATE: PHP will not purse PHP in .html files by default.
Todo this: Create a .htaccess file and place this in it:
RemoveHandler .html .htm
AddType application/x-httpd-php .php .htm .html
Hope this helps