if (!isset($_REQUEST['action']))
{
switch ($_REQUEST['action'])
{
...
This is weird. First you test if action IS NOT SET. Next you see which value it has. The answer is: none. You should probably remove the ! (not) from the if statement.
pritaeas
Posting Expert
5,484 posts since Jul 2006
Reputation Points: 653
Solved Threads: 875
case 'Login':
is case-sensitive. Are you sure that Login is passed to your URL (login is not the same, neither is LOGIN) ?
pritaeas
Posting Expert
5,484 posts since Jul 2006
Reputation Points: 653
Solved Threads: 875