what u really need, from what i understood maybe is...
a HTML hidden input
<form method=post action=page.php?func=func_two>
<input type=hidden name=op value=func_two>
</form>
so in the page.php, u will have something like this..
switch($_GET['func']) {
case 'func_two':
echo $_POST['op'];
break;
}
is this what u need. but is insecure...
becoz people can call whatever function they want from the URL... 🙂 keep in mind.
page.php?func=format_the_website
then.. u will cry.