hey im just wondering how do u wrap the word in HTML
sample:
$message = 'abcdefghijklmnopqrstuvwxyz0123456789';
<table width=50> <tr> <td> <? print $message; ?> </td> </tr> </table>
is you going to do this it will display the value of message without wrapping.. so how do u wrap the message so that it will just fit into the table size.
thank you in advance
forget about this i already figure out 🙂
just incase someon will ask try this
$message = wordwrap($message, 45, "\n", 1);
so that it will wrap the message when it reach 45 characters