我在數據庫中有一個表,名爲自定義字段類型。如果這匹配「textfield」,我想回顯一個文本框,如果它匹配「textarea」,我想回顯一個文本區域。PHP - 如何檢查變量是否匹配數據庫條目?
有人能讓我知道我在下面做錯了什麼嗎?
<?php if($this->item->custom_field_type1 == 'textfield') {
echo 'this is a text field';
}
?>
我在數據庫中有一個表,名爲自定義字段類型。如果這匹配「textfield」,我想回顯一個文本框,如果它匹配「textarea」,我想回顯一個文本區域。PHP - 如何檢查變量是否匹配數據庫條目?
有人能讓我知道我在下面做錯了什麼嗎?
<?php if($this->item->custom_field_type1 == 'textfield') {
echo 'this is a text field';
}
?>
該解決方案可以幫助你
<?php if($this->item->custom_field_type1 == 'textfield') {
echo '<input type="text">';
}
if($this->item->custom_field_type1 == 'textarea') {
echo '<textarea></textarea>';
}
?>
<?php echo ($this->item->custom_field_type1 == 'textfield'?'<input type="text" />':'<textarea></textarea>'); ?>
檢查,如果($這個 - >用品 - > custom_field_type1 == '文本') –