cinq
05-26-2004, 01:35 AM
I am trying to pull the latest posts' titles in certain forums to be displayed on a nonvb page.
The query looks a tad like this
while($newposts = $DB_site->fetch_array($getposts))
{
$newpostid = $newposts['threadid'];
$newposttitle = parse_bbcode($newposts['title']);
echo "<li><a href=\"../forum/showthread.php?t=$newpostid\">$newposttitle</a></li>";
};
In the thread titles I am getting stuff like :
Informative site ("new link")
How do i get rid of that formatting ?
Am i using the wrong parsing function ( parse_bbcode ) ?
Pls help :)
The query looks a tad like this
while($newposts = $DB_site->fetch_array($getposts))
{
$newpostid = $newposts['threadid'];
$newposttitle = parse_bbcode($newposts['title']);
echo "<li><a href=\"../forum/showthread.php?t=$newpostid\">$newposttitle</a></li>";
};
In the thread titles I am getting stuff like :
Informative site ("new link")
How do i get rid of that formatting ?
Am i using the wrong parsing function ( parse_bbcode ) ?
Pls help :)