Didnt work out.
I want to check if $a exist and $b does not exist.
The code is to varify if the enter button was pushed or if submit was pushed.
My actual code.
if ($submit)
{
//display confirmation before posting into database
}
elseif ($bchecker && (!$submit))
{
//notify enter was pushed tell to go back
}
else
{
display initial form
}
Is this correct or have I missed something?