Use Back Button to run again.
The End of Example - Code is shown below.
Code for "style.css"
body {
background-color: ;
font-family: ;
font-size: px;
color:;
margin: px;
padding-bottom:px;
}
#left {
position:absolute;
top:px;
left:0px;
width:px;
background:;
color:;
border:px solid ;
}
#mainbody {
margin-left:px;
background:;
border:px solid ;
}
p,h1 {
margin: px px px px}
Code for "left.html"
Code for "mainbody.html"
Code for "index.php"
<html>
<head>
<title>
Bookmark Title Here </title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<div id="left">
<?php include ("left.html") ?>
</div>
<div id="mainbody">
<?php include ("mainbody.html") ?>
</div>
</body>
</html>
VIP: This last file (index.php) is the main body of the php template. Please note that it 'loads' all the other 'pieces' into the web page.
By setting up all pages using the code in the index.php file, you control all pages by changing 2 files (left.html and mainbody.html). Then for a new / individual page you change the 'mainbody' file to mainbody2 (or similar)
PHP Code From: IBDhost