PHP Classes

php problem with php require

Recommend this page to a friend!

      Top level forums  >  PHP Specialists  >  General  >  php problem with php require  
Subject:php problem with php require
Summary:php problem with php require
Messages:2
Author:FRANkiller13
Date:2011-03-22 10:35:42
Update:2011-06-13 02:40:28
 

  1. php problem with php require   Reply   Report abuse  
Picture of FRANkiller13 FRANkiller13 - 2011-03-22 19:57:30
i get this errors

Notice: Undefined index: id in D:\xampp\htdocs\menu-class.php on line 3

..... This working only with index.php?id=home on url... i want working and with index.php without ?id= ............any help please?

--------------
index.php

<?php
require 'menu-class.php';
?>
--------------
menu-class.php

<?php

$home = $_GET["id"];

switch($home)
{
case 'home':
require_once 'incls/home.txt';
break;
}

?>

There is 1 reply in this thread, which is not being displayed.
Browsing this forum thread replies is available only to premium subscribers.


Go to the premium subscriptions page to learn how to become a premium subscriber and have full access to this forum.