Howdy,
I need to implement a selection menu within a php program for navigation to it's various functions. Currently, I'm hard-coding a single choice:
function1();
// function2();
// function3();
So, obviously, function1 executes in the case above. How can I present a menu so the user can choose a particular function? Or, can I call the program with a desired starting point?
i.e. program.php?function3();
Thanks!