I'm looking to display a text field being called from a database. Every other row is small bit of information, but I'm calling a text field with a few lines. It looks like this:
echo "<tr>";
echo "<td>10k</td>";
echo "<td></td>";
echo "<td>" . $list['tenk'] . "</td>";
echo "<td>" . $list['tenkl'] . "</td>";
echo "<td>" . $list['tenkd'] . "</td>";
echo "<td>" . $list['tenc'] . "</td>";
echo "</tr>";
that's an example. But the last field ('tenc') is a comment field and needs to be bigger than the other fields. I'm sure this is quite basic but I'm a newbie.
thanks!