I am having trouble calling a class method from a string in PHP. Here\'s a simple example. Once I get this working I\'ll be using a variable as the method n
Try this:
$tags_array = call_user_func(array($yourClassObj, 'get_images_for_tag'), $row["id"]);