我的腳本不應該讓HTML表單被提交,除非用戶將一些數據輸入到textarea控件中。但是,表單無論如何都會被提交,並且不會顯示用戶的消息。 任何人都可以看到我做錯了什麼?Textarea驗證
這裏是我的HTML:
<textarea name="description" id="description" rows = "4" cols = "25">
<?php echo $description?>
</textarea>
對於PHP,這也不:
if ($_POST['description'] == "") {
$errors .= 'Please enter a description of your invention.<br/><br/>';
}
或本:
if (empty($_POST['description'])) {
$errors .= 'Please enter a description of your invention.<br/><br/>';
}
工作。
發佈完整的腳本與相關部分 – 2010-10-25 16:21:22