A select statement seems un-necessary in this particular case you cudd do this:
<?php
if (!empty($_REQUEST['cmd'])) {
$_REQUEST['cmd']();
} else {
// default function
}
?>
Also remember that function names are case sensitive, so b careful.
Though the above script will work, I have one of those wierd feelings abt security. A potential attacker can execute any function in ur php script by jus giving its name on the URL, which is technically not advised.