Code: Select all
// These are the links in the index.php
html code...
<li><a href="index.php?id='home'" id="home" name="home">Home</a></li>
<li><a href="index.php?id='form'" id="form" name="form">Register</a></li>
<?php
include("form1.php");
getPage();
?>
html....
Then on the form1.php page is the following code...
function getPage()
{
$linkID = $_GET['id'];
if ($linkID == NULL)
{
changeBool("'home'");
}
else
changeBool($linkID);
}
//end exampleI believe this has something to do with the php.ini settings, possibly the apache settings...any ideas would be greatly appreciated.