i have a question for you.
on my site i have the following error report level
// PHP errors that will be reported when the script is run.
error_reporting(0);
problem is that when the session times out i get a blank page and the user has to type the address again to go to the main page and log on.
is there a way to embed a link to the above code so when the session times out it will echo a link to the main page?
i tried
// PHP errors that will be reported when the script is run.
error_reporting(0);
echo ("index.php");
with no luck, any ideas?
thank you. :)