Hi all.
I have created some web pages using MS FrontPage2003.
I created a template by using DWT in FrontPage.
Is it possible to use DWT with PHP?...how can I do it?
thanks.
Using Dynamic Web Templates (DWT) with PHP
Moderator: General Moderators
-
malcolmboston
- DevNet Resident
- Posts: 1826
- Joined: Tue Nov 18, 2003 1:09 pm
- Location: Middlesbrough, UK
am i the only one who feels that the templating systems in dreamweaver and frontpage are pointless and somewhat overweight when you know PHP
generic_content.php wrote:Code: Select all
$generic_footer = "Site design by <a href="http://www.somewhere.com">This company</a>";
much easier and faster to change whole blocks of content at a later date, i use this method alotnormal_page.php wrote:Code: Select all
<?php require ("generic_content.php"); ?> <html> <head> <title>Some title</title> </head> <body> <!-- blah blah blah, main content blah --> <?php print $generic_footer; ?> </body> </html>
Last edited by malcolmboston on Tue Jun 14, 2005 8:43 am, edited 1 time in total.