Thursday, 29 August 2013

Extract links from mysql and make it clickable?

Extract links from mysql and make it clickable?

I have a database table that stores URL.What I need is grab those URL's
from table and make it click-able with the URL's title as anchor.
This is what I have tried:
while($row4 = mysql_fetch_assoc($result4))
{
echo "<a href =\"$row4[Url1]\">".$row4['Title1']. "</a>";
}
It displays for example my tilte1 that is youtube and Url1 is
www.youtube.com.
But when I click on it it is going to localhost/mysite/www.youtube.com
How can I fix this?

No comments:

Post a Comment