Example invocation:
<a href=?name=login>Login</a>
Example index.php:
switch($name) {
case 'login':
readfile(mylogin.php);
break;
case 'main':
default:
show_homepage();
break;
}
Function show_homepage() {
print "You have reached the homepage.<br/>\n";
print "<a href=?name=login>Login</a><br/>\n";
}
Doesn't get much more sloppy than that, but that's how it's accomplished.