Log in

View Full Version : Parsing Text


pie
03-24-2004, 08:23 PM
How do i parse $post['message'] so it has line returns and emoticons

$post['message'] = handle_bbcode_img($post['pagetext_html'], $forum['allowimages']);

Velocd
03-24-2004, 08:49 PM
require_once('./includes/functions_bbcodeparse.php');

parse_bbcode($post['pagetext_html']);


That should do it.