php表单,通过模块自动生成。我希望能够在下面为一个特定的文本框添加“标签”/消息(即字段3:仅限名字)。有多个文本字段
Child's name:
<input type="text" value="" name="field3" size="30">
Last name:
<input type="text" value="" name="field7" size="30">
腓
<?php
} elseif ($field['type'] == 'textarea') {
?>
<textarea name="<?php echo $key; ?>" style="width: 70%; height: 100px">
<?php
echo ${$key};
?>
</textarea>
答案 0 :(得分:0)
如果仅针对一个特定项目,您可能希望添加类似..
<?php
echo($key == "field3" ? "Your phrase for firstname here" : "");
?>