I am developing a forum, I have a text area where users input their comment, and I am displaying it in a table row. But I do find that the data is not fully displayed , I mean while creating a post if I enter 500 characters, the table row displays only limited characters restricted to the width of the row. Is there any way to display the data entirely in row?
Here is the code that displays the message;refer to line - echo "<td>" .
//$row['usermessage'] . "</td>";
echo "<table class='zebra'>
<thead>
<tr>`enter code here`
<th> Original Message by " . $row['username'] . " posted at " .
$row['cqatime'] . " IST</th>
</tr>
</thead>";
echo "<tbody>";
echo "<tr>";
echo "<td>" . $row['usermessage'] . "</td>";
echo "</tr>";
echo "</tbody>";
echo "</table>";