the problem that i have with isset() is that
lets say this is how i call the script:
http://localhost/denn.php?c=&d=burak
and here is denn.php
<?php
if(isset($_GET["c"])){
echo "isset is not working for me!";
}
?>
in this case isset() will return true and the script will echo the text although the value for "c" is null so i have to write another condition
if(isset($GET["c"]) && $GET["c"]!=Null)
empty() works for me but;
how about just writing if($_GET["c"]) to make things a little bit more compact? checks wheter the variable is set and wheter it is null.
does this have any implications that i dont know?
burak