目前共有1篇帖子。
【資料】nl2br函數的使用:正確顯示文本區輸入的內容
1樓 巨大八爪鱼 2015-11-21 12:56

表單:
<form id="form1" name="form1" method="get">
  <label for="content">Text Area:</label>
  <br>
  <textarea name="content" cols="50" rows="10" id="content"><?=$content?></textarea>
  <br>
  <input type="submit" value="Submit" style="margin-top:6px">
</form>
使用get方式提交

其中默認值$content一定要經過htmlspecialchars轉義後才能放到textarea標籤內部。


獲取文本區輸入的內容:
<?php
if (filter_has_var(INPUT_GET, 'content')) {
 $content = htmlspecialchars($_GET['content']); // 轉義HTML特殊字元
} else {
 $content = '';
}
?>


顯示輸入的內容:
<div style="font-weight: bold">You typed:</div>
<div><?=nl2br($content)?></div>


其中nl2br把文本區中的\n轉換成<br>,以便於在HTML上換行。

回復帖子

內容:
用戶名: 您目前是匿名發表
驗證碼:
 
 
©2010-2024 Arslanbar [手機版] [桌面版]
除非另有聲明,本站採用創用CC姓名標示-相同方式分享 3.0 Unported許可協議進行許可。