From what my book says,
"One problem with the isset() function is that an empty string tests as TRUE, so to check for these, you can use the strlen() function which counts the number of characters."
What I'm curious about though is whether it's good form to, for instance . . .
$_GET['zip'] = stripslashes($_GET['zip']);
or if I should
$zip = $_GET['zip']
$zip = stripslashes($zip);
and leave and $_GET['zip'] alone.