I have an array which can have an index
Code: Select all
$a = NULL; if($_GET['page']) { $a['page'] = $_GET['page']; } // usually set via $_GET/ $_POST else there is not an index of it ;a couple lines down i have a
Code: Select all
if(isset($a['page'])){ @unset($a['page']); }I tried doing some background research on this but i don't see anything...what does this mean?Parse error: syntax error, unexpected T_UNSET