Code: Select all
$getFunction = urlencode($_GET['ga']);
function $getFunction(){
include("functions/function.".$getFunction.".php");
}Moderator: General Moderators
Code: Select all
$getFunction = urlencode($_GET['ga']);
function $getFunction(){
include("functions/function.".$getFunction.".php");
}Code: Select all
$filename = urlencode($_GET['ga']);
function yourFunctionName($filename){
include("functions/function.$filename.php");
}