I have a file functions.php which has multiple functions like:
function do_this(){
}
function do_that(){
}
Now, I am thinking doing something weird like calling that function from URL:
functions.php?func=do_that
Now, I added this lines of code to functions.php
if(isset($_GET["func"])){
$func = $_GET["func"];
//How to call that function with name "$func"
}
Any great brains out there? Let me know. If that's not possible, then also lemme know. Coz I have to think of a new approach in my work.