我有一个表单,它正在工作,唯一的事情是当用户在文本框中输入很多数字时
例子:

12345678
3567892
1235674
36778883
566666678
35674748999
// with no spaces

它不想包装。我浏览了整个网络,它只显示了如何包装文本。
<html>
<?php

require_once("connect.php");
$stmt = $db->prepare("SELECT * FROM numbers");
$stmt->execute();

?>
<?php while( $row = $stmt->fetch(PDO::FETCH_ASSOC) ) { ?>

<table border='1'table-layout: fixed >
<br>
<tr>
    <th>Id</th>
    <th>numbers</th>

</tr>
<tr>
<td style="word-wrap: break-word;"><?php echo $row['numbers']; ?></td>
</tr>
<?php } ?>
</table>
</body>
</html>

最佳答案

尝试通过css指定表格的宽度。

<table border="1" style="table-layout: fixed; width: 150px;">
    <tr>
        <th>Id</th>
        <th style="word-wrap: break-word;">numbers</th>

    </tr>
    <?php while( $row = $stmt->fetch(PDO::FETCH_ASSOC) ) { ?>
    <tr>
        <td style="word-wrap: break-word;"><?php echo $row['id']; ?></td>
        <td style="word-wrap: break-word;"><?php echo $row['numbers']; ?></td>
    </tr>
    <?php } ?>
</table>

关于php - 自动换行不让数字也自动换行,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/26836287/

10-10 22:15