hi,
yes, of course, you can use variable function names.
here is an example:
<?
function test1() {
echo "this is test 1!";
}
function test2() {
echo "this is test 2!";
}
$mode = 2;
$myFunc = "test".$mode;
$myFunc();
?>
hope, this is useful for you.
andreas