Posted by maya on 06/13/06 18:44
hello, I am trying to figure out how to deal with when not all elements
in a submitted form are filled out or when page expects a query string
and doesn't get one.. I tried the two conditionals below, but still got
errors:
$param= $_GET['msg'];
/*
if ($param != "") {
echo $param;
}
*/
if (isset($param)) {
echo $param;
}
query string is:
home.php?msg=selected records have been deleted from the database.
(referrer pg is not always pg sending query string.. so need to deal
w/when no query string is passed..)
thank you very much..
Navigation:
[Reply to this message]
|