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! Link to comment https://forums.phpfreaks.com/topic/77358-solved-nlbr2-problem/ 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 Link to comment https://forums.phpfreaks.com/topic/77358-solved-nlbr2-problem/#findComment-391630 Share on other sites More sharing options...
Eiolon Posted November 14, 2007 Author Share Posted November 14, 2007 Ah, my mistake. Thanks! Link to comment https://forums.phpfreaks.com/topic/77358-solved-nlbr2-problem/#findComment-391632 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.