Jump to content

Simple problem


Jurge

Recommended Posts

It shouldn't be that difficult I just don't know how to do it myself. I'm using the following code for a simple navigation, i has been placed in the content of my home page, it works fine however i don't know how to set the home page.

 

<div id="content">
			<?php
			$page = $_GET['page'];
			$file = $page.".php";
			if(file_exists($file)) {
			include($file);
			} else {
			include "error.php";
			}
			?>
			</div>

Link to comment
Share on other sites

You should check to see if $_GET['page'] has been set before assigning it to file. That way you can also set a default home page.

 

<?php
   // check if it has been set
   if(!isset($_GET['page'])){
      // no page has been set, so lets set a default
      $page = 'home';
   }else{
      // page has been set
      $page = $_GET['page'];
   }

   $file = $page . '.php';
   // now you can check to see if the file exists, and include it if it does or show the error page if it doesn't.
?>

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.