How do I get this to not display when you first go to the page???
if ($error) {
echo "Error: $error<br/>";
}
if ($keycode) {
echo "Keycode: $keycode<br/>";
}
|
How do I get this to not display when you first go to the page???
|
||||
| show 2 more comments |
|
|||||||
|
|
This probably works for you:
I cannot say more, because you have not specified what the value of Or you just have to introduce a flag that indicates that an error occurred:
|
|||
|
|
|
Based on the comments, it seems that your conditional is evaluating to true before you expect it to. Without seeing more of your code, this is only a guess, but I believe your problem is that you're giving the variable
If so, you'll want to check out PHP's documentation on casting to booleans, and maybe use something like this (with contribution from Christian's answer):
|
|||
|
|
The point here is that $_SESSION-variables "last" (as long as you session_start()). Google "php sessions" for more information, and ask more questions on SO if necessary. :) Use session_destroy(); to destroy the session. |
|||||||
|
$erroris not defined, the message won't show up. Where do you define it? – Felix Kling May 24 '10 at 19:51