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!

sorry for the stupid question.

i just widened the column with basic css

sorry

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.