This is what the function calls for:
create_thumbnail($path, $save, $width, $height);
I need to pass a dynamically created $path that contains two variables, $i and $p
This is my code
create_thumbnail('images/'.$i.'/coverphoto/'.$p, false, 1160, 574);
I know my concatenation of the first parameter is wrong, but I can't seem to get it to work using various different methods of concatenation.
Any ideas?