Is there a way to call a function through variables?
For instance, I want to call the function Login(). Can I do this:
$varFunction = \"Login\"; //to
You can use...
$varFunction = "Login"; $varFunction();
...and it goes without saying to make sure that the variable is trusted.