So I need some tips,
If all I use is this code:
Code: Select all
<?php
require ("header.php");
require ("footer.php");
?>And do I have to change the "required" pages from .html to .php, even if they contain no PHP whatsoever?
What tags in the the HTML document must be changed to support PHP, e.g. When I had
Code: Select all
<?xml version="1.0" encoding="UTF-8" ?>And are there any compatibility issues with using PHP? Do any old browsers mess up when they read it?
How do I change the layout of the ?php tag with CSS or HTML, to adjust the width, etc?