Jump to content

Trouble with PHP include


Ransom1337

Recommended Posts

Hello everyone,

 

I'm using the following code for PHP-based navigation on my website:

 

<?php // Opening tag for PHP

$p = $_GET['p'];

if ( !empty($p) && file_exists($p . '.htm') && stristr( $p, '.' ) == False ) 
{
// pages = directory where you store your pages
   $file = $p . '.htm';
}
else
{
// 1.php =  defult page
   $file = './about.htm';
}

include $file;
// closing php tag
?>

 

and I'm getting the error:

 

Notice: Undefined index: p in e:\domain.com\index.php on line 91

 

I don't really know anything about PHP to be honest, so if someone could tell me why this is appearing I'd be very grateful.

 

Thanks!

Link to comment
Share on other sites

I assume you are getting the error when you don't provide a ?p=pageid in the URL?

 

To get rid of the notice, try:

<?php // Opening tag for PHP

$p = null;
if(array_key_exists('p',$_GET))
  $p = $_GET['p'];

if ( !empty($p) && file_exists($p . '.htm') && stristr( $p, '.' ) == False ) 
{
...

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.