pj.php (Projects) The image needs to go on this page, could be muliple images
Code:<?php
switch($_GET['p']){
default:
// Index page
$pageTitle="Projects";
$pageContent="My Past and Present projects are listed here<br><br>IMAGE HERE"
."<br />";
break;
case "about":
$pageTitle="About this site";
$pageContent="Made by ...";
break;
}
include("inc.php");
?>

