I posted the other a question the other day about a form problem i had I have justed fixed it It turns out the index page has to be index.php however I have designed the site using HTML/CSS Is there any way to convert the page and keep the design Thanks
Yep - php is just the same as html, only anything between <?php and ?> are parsed by the php interpreter, and the output from that code is put in it's place in the same location as the <?php ?> block of code was example <html> <head> <title><?php echo 'This is the title'; ?></title> </head> <body> <p>The date is <?php echo date('Y-m-d'); ?></p> </body> </html> PHP: will output <html> <head> <title>This is the title</title> </head> <body> <p>The date is 2010-05-23</p> </body> </html> HTML: