Can anyone tell me why
echo($_post['action']);
prints what I expect it to, but
$action=$_post['action']; echo("$action");
doesn't print anything?
because: $action=$post['action']; should be: $action=$POST['action'];
Remember, PHP is case-sensitive.
Diego