right first things first.
the way i have my website setup is that in index.php
it has this code:
$ext = ".php";
$module = "".$module."".$ext."";
if (file_exists("modules/".$module."")) {
include("modules/".$module."");
} else {
include("modules/news.php");
}
which to save your hassle. is what ever the menu links to
eg: index.php?module=test
it then does the command:
include ("modules/test.php");
well the login script works perfectly when it is ran on its own:
eg: loginfiles/login.php
but because ive got it set up in an include thing on the index.php
that i think that the variables are not being passed onto the requested scripts because they are being included.
any one have an idea how a form works with the include thing