I have a page that is calling dynamic URL content from MySQL via Primary ID. The information is being called and echoed as
"../images/icons/filename.jpg"
via this command:
<php echo $row_getimages['icon']; ?>
I want to change "../images/icons/filename.jpg" to:
"http://www.mysite.com/images/icons/filename.jpg"
Does anyone know if this is possible with a str_replace or some other command? I have tried that particular one but I am having trouble figuring out the proper syntax.