As I do to create a QUERY_STRING of that it sorts things out:
index.php?action=login;area=1?
you have to use "&" instead of ";"
index.php?action=login&area=1
then in your code
$action = @$GET["action"]; $area = @$GET["area"];
etc ...