Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
<?
echo file_get_contents("tabledesign.txt");
?>
<table width="100%" border=1>
<tr height="10%"><td colspan="3">Header text goes here</td></tr>
<tr height="480px" valign="top"><td width="10%" >left hand menu goes here</td><td width="80%">center text goes here</td><td width="10%">right text goes here</td></tr>
<tr height="10%"><td colspan="3">footer text goes here</td></tr>
</table>
<a href="index.php?content=welcome">Home Page</a>
<a href="index.php?content=photos">Photo Gallery</a>
<a href="index.php?content=form">Contact Form</a>
<div id="content">
<?php
if(isset($_GET['content'])){
if($_GET['content']="welcome"){
[green]//read from the content file that has the welcome part, and display inside the div. [/green]
}
}
?>
</div>