我正在尝试从 mysql 数据库中获取数据,但遇到了一些问题。我有一个表单,用户可以在其中输入文本,并且可以将其发送到数据库,但是在显示回来时,如果文本太长,则文本不适合表格。我想在20 个字符后换行。这怎么可能?即使我将表格宽度设置为某些像素,文本也会出现在表格之外。
这一行有很长的文字,我想每 20 个字符换行一次。
echo "<td>" . $row['lastname'] . "</td>";
<?php
$con=mysqli_connect("localhost","root","","users");
// Check connection
if (mysqli_connect_errno())
{
echo "Failed to connect to MySQL: " . mysqli_connect_error();
}
$result = mysqli_query($con,"SELECT * FROM users");
echo "<table border='1' width='640px'>
<tr>
<th>Firstname</th>
<th>Lastname</th>
</tr>";
while($row = mysqli_fetch_array($result))
{
echo "<tr>";
echo "<td>" . $row['firstname'] . "</td>";
echo "<td>" . $row['lastname'] . "</td>";
echo "</tr>";
}
echo "</table>";
mysqli_close($con);
?>