contra10 Posted January 27, 2009 Share Posted January 27, 2009 i have in my table an echoed value that can be really long...thing is how do i limit the amount of words in a row. At the moment it is just echoed throughtout the table and forces the table to become longer <?php echo "<table border='1' align='right' width='600'>"; echo "<tr><td width='80%' valign='top' align='center'><FONT FACE='ariel' size'12'><h1><b>$evname</b></fOnt></td></tr>"; echo "<tr><td height='200' valign='top' align='left' width='300px'>$evdescription</td></tr>"; ?> Link to comment https://forums.phpfreaks.com/topic/142706-solved-echoing-informaiton-in-rows/ Share on other sites More sharing options...
DeanWhitehouse Posted January 27, 2009 Share Posted January 27, 2009 http://uk2.php.net/wordwrap Link to comment https://forums.phpfreaks.com/topic/142706-solved-echoing-informaiton-in-rows/#findComment-748057 Share on other sites More sharing options...
contra10 Posted January 27, 2009 Author Share Posted January 27, 2009 for some reason it didn't work <?php $text = ($evdescription); $newtext = wordwrap($text, 20, "<br />\n"); echo "<table border='1' align='right' width='600'>"; echo "<tr><td width='80%' valign='top' align='center'><FONT FACE='ariel' size'12'><h1><b>$evname</b></fOnt></td></tr>"; echo "<tr><td height='200' valign='top' align='left' width='300px'>$newtext</td></tr>"; ?> Link to comment https://forums.phpfreaks.com/topic/142706-solved-echoing-informaiton-in-rows/#findComment-748062 Share on other sites More sharing options...
DeanWhitehouse Posted January 27, 2009 Share Posted January 27, 2009 Try $newtext = wordwrap($text, 20, "<br />\n",true); Link to comment https://forums.phpfreaks.com/topic/142706-solved-echoing-informaiton-in-rows/#findComment-748065 Share on other sites More sharing options...
contra10 Posted January 27, 2009 Author Share Posted January 27, 2009 that worked thanks Link to comment https://forums.phpfreaks.com/topic/142706-solved-echoing-informaiton-in-rows/#findComment-748067 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.