I am not 100% sure I put it in the right location as I am fairly new at this but here is what I did:
PHP Code:
// ########## start add league ##########
if ($_POST['do'] == 'addleague')
{
echo 'Processing Begins';
var_dump($_POST);
die();
}
All it did was bring me back to the same page, but instead of having
http://localhost/leagues/register.php in the url it had
http://localhost/leagues/register.php?do=addleague
Again thank you for any help you can provide.