I have written the following piece of code
if( (!isset($_SESSION['home'])) || (!isset($_SESSION['away'])) )
I assume this should check if each of these variables exist. I only show whats in the if statement if either of those variables dont exist.
But for some reason it is still showing the stuff inside the braces even though the variable 100% exists.
Is the code wrong? Thanks