我的代码给了我一个问题:当我将信息保存到数据库中时,格式会被保留,但是当我将信息放入 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> </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>