Eiolon Posted November 14, 2007 Share Posted November 14, 2007 The error: Fatal error: Call to undefined function nlbr2() in C:\wamp\www\forums\topic.php on line 179 The query: // Query the database for topic information. $query_topic = "SELECT *, DATE_FORMAT(topic_date, '%M %e, %Y at %l:%i %p') as convdate FROM topics WHERE topic_id = ".$_GET['topic_id'].""; $topic = mysql_query($query_topic) OR die ('Cannot retrieve topic information.'); $row_topic = mysql_fetch_array($topic); The code: <?php echo nlbr2($row_topic['topic_body']) ?> Am I not using nlbr2 correctly? I tried doing it this way and got the same error: $message = nlbr2($row_topic['topic_body']) Then I echoed $message. Thanks for your help! Quote Link to comment Share on other sites More sharing options...
coder_ Posted November 14, 2007 Share Posted November 14, 2007 <?php echo nl2br($row_topic['topic_body']) ?> function is "new line to brake rule" -> nl2br() http://hr.php.net/manual/en/function.nl2br.php Quote Link to comment Share on other sites More sharing options...
Eiolon Posted November 14, 2007 Author Share Posted November 14, 2007 Ah, my mistake. Thanks! Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.