表單:
<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上換行。