Hi, I need to specify a variable name for a function call (imageapi) and then execute the line.
//For example this is my working code:
require($Path.’/lib/imageapi.php’);
new imageapi($ACCESS_TOKEN);
//I want to replace the above lines with:
require($Path.’/lib/imageapi.php’);
$provider = ‘imageapi’;
new $provider($ACCESS_TOKEN);