我在数据库中有一个表,其中包含一个名为自定义字段类型的部分。如果这匹配为“textfield”我想回显一个文本字段,如果它匹配“textarea”我想回显一个文本区域。
有人可以让我知道下面我做错了吗?
<?php if($this->item->custom_field_type1 == 'textfield') {
echo 'this is a text field';
}
?>
答案 0 :(得分:0)
此解决方案可能对您有所帮助
<?php if($this->item->custom_field_type1 == 'textfield') {
echo '<input type="text">';
}
if($this->item->custom_field_type1 == 'textarea') {
echo '<textarea></textarea>';
}
?>
答案 1 :(得分:0)
<?php echo ($this->item->custom_field_type1 == 'textfield'?'<input type="text" />':'<textarea></textarea>'); ?>