Hi Guys Am I right in thinking that I can design a site in HTML then just add php code to specific parts for it to carry out the desired action? Lafours
Yes. That is one of the easier ways to get a PHP site going. Another way is to add the HTML into the PHP but it's usually easier if you have a design in mind already.
Wow! Thanks for the fast response! Forgive my ignorance but would it just be a matter of designing pages in dreamweaver with a .php ext but using html?
I always use this process: 1: Create design in photoshop 2: Slice/develop HTML/CSS 3: Change extention to PHP and begin pulling data from the MySQL database.
hi, you can have php code in your html also, but you need to modify your webserver configuration. krisztian
<html> <head> <title><?php echo "This is the page title"; ?></title> </head> <body> 1+2 = <?php echo (1+2); ?> </body> </html> PHP: