for the code below I get a page that does print task and then exit even though the value of task is zero.
$task = (isset($_POST['task']))?$_POST['task'] :(isset($_GET['task']))?$_GET['task']:0;
if($task == "delete") {
echo $task;
exit();
}
output:
0
however if I change the first line to:
$task = (isset($_POST['task'])) ? $_POST['task'] :(isset($_GET['task'])) ? $_GET['task'] : NULL;
it will work normally, so why is it that the value of a the string 'delete' is equal to 0?
'<div>' . $i > 0 ? $i : 1 . '</div>';would fail without brackets.'<div>' . ($i > 0 ? $i : 1) . '</div>';– Rolice Aug 13 '11 at 18:14