This is what I have...
$videos[$i]['img'] = str_replace(">", " width=40% height=40% >", $matches[0]);
BUT I would like to be able to let the user control the thumbnail size...
$videos[$i]['img'] = str_replace(">", " width=$xypic height=xypic >", $matches[0]);
That doesn't work. It returns nothing. I've tried using quotes, single quotes, the dot before and after..
Am I trying to do something that can't be done here?
Thank you in advance for the help!