It is my understanding that this might seem easy for you but to me it seems like I have to move a mountain since I am a beginner. I have the following while loop:
$rows = array();
while($r = mysql_fetch_assoc($result)) {
$images[]=$r['images'];
$content=$r['content'];
}
That loops prints the "content" column of a MySQL db query. What I get is a relative URL that I want to convert to an absolute one by just prefixing "http://offercat.com/media/com_jbusinessdirectory/pictures" before every "images" result.
Any ideas on that ?
Thank you in advance.