Hi all,
Iv'e created a PHP/MySQL shoutbox, and like most, the messages are in an <iframe> which is 160px. I want to prevent users from typing in crap such as ssssssssssssssssssssssssssssssssssssssssss which will then cause scrollbars to appear.
I had a look around on PHP.net and came across the wordwrap function, but using the following code as a test:
<?php
$text = "12345678901234567890123456789012345678901234567890123456789012345678901234567890";
$newtext = wordwrap( $text, 20 );
echo "<table width=\"150\" border=\"0\">";
echo "<tr>";
echo "<td>";
echo $newtext;
echo "</td>";
echo "</tr>";
echo "</table>";
?>
Does not work. I want to get it working so that every 20 characters, there is a line break if the 20 characters are all in one word..
TIA