1

Topic: Integration of Easy BBCode?

Is it possible to intregrate Easy BBCode on textarea that is'nt in forum but in the site where i have integrated punBB?

I don't get the all the path to work as the page that the textarea is on level under the forum dir.

Someone who has done this before?

Cheers!

2

Re: Integration of Easy BBCode?

Well, it was possible... smile

It works great for me now but i have one issue...

I use the function parse_message....

But i also need the preparse_bbcode function..but i dont know how i should do to run them both?

This is how i run the parse_message function...

$wee['inlagg'] = parse_message($wee['inlagg'],false);
echo $wee['inlagg'];

How should i do to run them both? Any suggestions?

Re: Integration of Easy BBCode?

Wouldn't something like this work?

$wee['inlagg'] = preparse_bbcode($wee['inlagg'], $errors);
$wee['inlagg'] = parse_message($wee['inlagg'], false);
echo $wee['inlagg'];

4

Re: Integration of Easy BBCode?

Thanks mate smile