Is this bad practice?
if($_SESSION['something'] == '') {
echo 'the session is empty';
}
Is there a way to check if a its empty or b it is not set? e.g something better than...
if( $_SESSION['something'] == '' || !isset($_SESSION['something']) ) {
echo 'the session is either empty or doesn't exist
}
OR does !isset just see if a $_SESSION exist and doesn't matter if there are values in the array?
Thanks for helping a newbie
