"whatever.com" is a little upload page that has a form with 4 fields... I have an 'if' statement that checks to see if a field was left blank, and if so, display an error.
for example:
if ($_SESSION['missing_email']==""){
echo "You did not enter an email address"
$_SESSION['missing_email']=""; //reset to null for next attemp
}
so when a user goes to the site, they hit the page that sets the session vars first, then that shoots them to the next page (whatever.com) where they attempt to upload to the server. If something is left blank, the final script sends them back to 'whatever.com'.
Another oddity is that when the page initially loads, I get the Undefined index: errors, but if I refresh it, they go away.. I was just curious if anyone has encountered any SESSION issues with the 4.3.4 version?