PDA

View Full Version : bb code elsewhere in site


Jolten
01-10-2005, 04:25 PM
Hi,

I've got my site set up to use vb as the core in a subdirectory off of the root, then I call the general backbone from that subdirectory for the root. Basically.. main site = www.domain.com, forums are at domain.com/forums. The root pulls global.php to use usernames, permissions and all the other items.

So here's my question.....

Can I pull a file or two and use bbcode in html forms and parse it from db fields in my root directory?

I've tried including functions_bbcodeparse.php but simply including it wasn't enough. Any help would be greatly appreciated.

Thanks

roundhost
01-10-2005, 04:56 PM
Once you have included functions_bbcodeparse.php you need to use the function :)

e.g.

$parsedtext = parse_bbcode2($text);

Jolten
01-10-2005, 05:00 PM
ahh!

Thanks roundhost.