php form input type =“text”下面的echo标签用于特定字段

时间:2011-11-24 03:03:01

标签: php forms

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>

1 个答案:

答案 0 :(得分:0)

如果仅针对一个特定项目,您可能希望添加类似..

<?php 
echo($key == "field3" ? "Your phrase for firstname here" : "");
?>