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>"; ?> Quote Link to comment Share on other sites More sharing options...
DeanWhitehouse Posted January 27, 2009 Share Posted January 27, 2009 http://uk2.php.net/wordwrap Quote Link to comment 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>"; ?> Quote Link to comment 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); Quote Link to comment Share on other sites More sharing options...
contra10 Posted January 27, 2009 Author Share Posted January 27, 2009 that worked 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.