merhaba i i yapmak tek şey bir değişken koymak neden herkes biliyor benim testleri farklı diyor ancak aynı olmalıdır ne 2 şeyler denedim ...
if ($_SESSION[$something] === null)
echo("this is null");
$_SESSION[$something] does not exists so it indeed says: "this is null". now look at this
$theSession = $_SESSION[$something];
if ($theSession === null)
echo("this is null");
şimdi tam olarak aynı doğru olmalı iken "bu null" demiyor?