Quote:
Originally Posted by iankh
I know this is proabably a dumb question, but I am not technical. Does the basic web page have to be set up as a .php page or can this be used in an html page?
|
If you want PHP to work in your .html pages, and if you are on apache server you can make your server to parse php scripts in your html files. Insert this code in your
.htaccess file, to make php work in .html files:
Code:
RemoveHandler .html .htm
AddType application/x-httpd-php .php .htm .html
A demo of this parsing is here: http://www.photoshopcity.com/content...ml?parent_id=7. See those ?parent_id vars...

.