This Forum has been archived there is no more new posts or threads ... use this link to report any abusive content
==> Report abusive content in this page <==
Post Reply 
 
Thread Rating:
  • 0 Votes - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
How do I change website content without touching every page?
01-16-2013, 09:44 AM
Post: #3
 
Try the PHP function include().

Your site should look like this:

File index.php
<html>

<body>

<div id="header"></div>
<div id="navigation"></div>
<div id="content">

<?php
$site = $_GET["site"];
include('homepage/'.$site.'.php');
?>

</div>
</body>

And your links should look like this:
<div id="navigation">

<a href="homepage/index.php?site=home"></a>
<a href="homepage/index.php?site=about"></a>
</div>


Now create the files:
homepage/home.php with your content in it.

The link will now tell the file index.php which site to load, and index.php will simply insert the content of the included file.
Find all posts by this user
Quote this message in a reply
Post Reply 


Messages In This Thread
[] - Erraticspark576 - 01-16-2013, 09:35 AM
[] - Joe - 01-16-2013 09:44 AM

Forum Jump:


User(s) browsing this thread: 3 Guest(s)