Thank you for your suggestions! 
Unfortunately, I've only just started looking at using PHP, so I'm unsure how to go about the whole getpage command by myself that you suggested. 
Another helpful smart person on the net showed me this code to use for the navigation:
Code:
$pinfo = pathinfo($_SERVER["SCRIPT_FILENAME"]);
$reqpath = dirname($_SERVER["REQUEST_URI"]);
if(preg_match("/(.*?)(\d+)\.php/", $pinfo["basename"], $matches)) {
$fnbase = $matches[1];
$fndir = $pinfo["dirname"];
$current = intval($matches[2]);
$next = $current + 1;
$prior = $current - 1;
$next_file = $fndir . DIRECTORY_SEPARATOR . $fnbase . $next . ".php";
$prior_file = $fndir . DIRECTORY_SEPARATOR . $fnbase . $prior . ".php";
if(!file_exists($next_file)) $next_file = false;
if(!file_exists($prior_file)) $prior_file = false;
if($prior_file) {
$link = $reqpath . DIRECTORY_SEPARATOR . basename($prior_file);
echo "<a href=\"$link\">Prior</a>";
}
if($prior_file && $next_file) {
echo " / ";
}
if($next_file) {
$link = $reqpath . DIRECTORY_SEPARATOR . basename($next_file);
echo "<a href=\"$link\">Next</a>";
}
}
It seems to work well and does what I want - posting the code just in case another person somewhere is looking for a similar thing! 
The way I've got my pages set up now is <?php include 'header.php' ?> at the top then <?php include 'footer.php' ?> at the bottom, which also includes the above code - I will have the 80 pages with their seperate content (jquery slideshows and text) and these includes - so if I need to make any major changes, the header and footer can easily get updated.
Do you think this is a good solution for someone not using a database/cms? 
It's a shame I'm such a n00b at php and couldn't follow your suggestions lol, they sounded like they would work a lot better!
Bookmarks