1

我的代码给了我一个问题:当我将信息保存到数据库中时,格式会被保留,但是当我将信息放入 textarea 时,会有很多额外的空格。

截图:http: //i1226.photobucket.com/albums/ee416/realodix/Photo%20Blog/description_zps8f9c858c.jpg

<?php
    $id = $_GET['id'];
?>

<form id="form1" name="form1" method="post" enctype="multipart/form-data" action="wbpl_add-edit.php?action=updateproduct&id=<?php echo $id ?>">
    <td>
    <table>

<?php
    $sql="select * from wbpl_product
          where kd_product='$id'";
    $result=mysql_query($sql) or die(mysql_error());
    while($rows=mysql_fetch_array($result)){
    ?>

<tr>
<td width="120">Deskription</td>
<td width="350">
    <textarea name="product_deskripsi" rows="5" style="width: 512px;"><?php echo htmlspecialchars($rows['deskripsi']);?></textarea>
</td>
</tr>

<?php } ?>

<tr>
    <td>&nbsp;</td>

    <td>
    <input class="btn" type="submit" name="tambah" value="Update" />
    </td>
</tr>

<tr>
    <td colspan='2'><div id="form1_errorloc" style="color:red"></div></td>
</tr>

</table></td>
</form>
4

2 回答 2

3

每次保存该表单时,后面的空格<textarea>都会添加到值的前面,删除后面的空格,<textarea>如下所示:

<textarea name="product_deskripsi" rows="5" style="width: 512px;"><?php echo htmlspecialchars($rows['deskripsi']);?></textarea>
于 2013-05-29T13:45:39.353 回答
0

尝试这个:

<textarea name="product_deskripsi" rows="5" style="width: 512px;">

添加包装

<textarea name="product_deskripsi" rows="5" wrap="virtual" style="width: 512px;">

您可以使用 wrap: off、soft、hard、virtual 或physical

于 2014-09-13T19:58:54.817 回答