在一个文件中,我有以下代码:
if (theForm.lqd_9.value == "")
{
alert("You have forgotten to specify - Description!");
theForm.lqd_9.focus();
return (false);
<tr>
<td class="theadingt" align="center" height="14" width="180">
<b>Description:<span lang="en-us"><font color="#ff0000">*</font></span></b></td>
<td class="theading" align="left" height="14" width="545">
<textarea cols='48' rows='6' name="lqd_9"></textarea></td>
</tr>
在接收文件中我有这个:
<?php echo $_POST["lqd_9"]; ?>
如果代码为空,如何使代码不显示任何内容?