I have $_SESSION['fail'] = "true";
I have that in a form script that posts back to itself.
When the script posts back to itself though the $SESSION['fail'] is lost.
I've looked into it and $SESSION is suppouse to make the varaible global. I've tried making the variable super by using global $_SESSION (and made the $fail global also at one point but that didn't work).
Its within a class too. But i have everything working under that class.
Any ideas? thanks!