After reading and reading PHP mauals and online documentation, I still cannot determine why I cannot use form variables in condition statements or query statements.
Take for example:
if($id) {
.
.
}
Instead I have to use the following to make the condition work:
if($_POST['id']) {
.
.
}
If a variable is within scope, why can the first option not be used?
Perplexed...
Bill