我正在使用此文本區域,以便用戶可以在這裏寫一些文本,我使用onblur
和onfocus
,以便當用戶單擊默認文本時它不顯示,我提供了一些消息作爲默認值,問題在於,當用戶在此文本區域中寫入的內容超出默認值時,也會以其他文本類型存儲在數據庫中,錯誤在哪裏? 我在這個變量$nature_speci
默認值正在提交數據庫
$nature_speci = trim(mysql_prep($_POST['other_naturespeci']));
採取價值,這是文本區域的html代碼
<textarea id="other_naturespeci" name="other_naturespeci" size="30" maxlength="100" onfocus="if(this.value==this.defaultValue)this.value='';" onblur="if(this.value=='')this.value=this.defaultValue;">Assignment Specification in Few Words.<?php if (isset($errors)) { echo $_POST['other_naturespeci'];}elseif(isset($_GET['other_naturespeci'])){ echo $_GET['other_naturespeci'];} ?></textarea>