You use $POST_ when you are grabbing information from a form (person fills out a form - say a name - and you want to use that information on the next page) and you use $GET_ when you are you are getting the variable from the url (url/page.php$do=variable). So, try using $GET_['do'] or $REQUEST_['do'].
(I think I got that right, I do need more coffee this morning!)
Well I tried that and I still have the same problem.
Here is what I've got:
League Register template:
PHP Code:
<form action="register.php?do=addleague" method="post">
<input type="hidden" name="do" value="addleague" />
// League Registration Form
</form>