Undoing [URL] [/URL]
Hi,
I've read some data from the database using
$threadarray = $vbulletin->db->query_read("SELECT thread.* etc etc );
and now I want to print it out to the screen
while($thread = $vbulletin->db->fetch_array($threadarray))
{
echo "{$thread['title']} <br />";
echo "{$thread['pagetext']} <br />";
}
trouble is its coming out like
Here is a list of Beatles related websites.
[ URL ]http://www.thebeatles.com/[ /URL ] [ URL ]http://www.johnlennon.com/[ /URL ]
How do I turn the [ URL ] and [ /URL ]s back into HTML
Thanks
Mike
|