我正在尝试添加“if and”语句,但无法使其正常工作。
else if($iamonly == 'Other - ' && trim($othertype == '')) {
echo '<div class="error_message">Error! You selected "Other"</div>';
如果$iamonly
字段为“其他”且我在$othertype
字段中输入数据,我仍会收到错误消息。请有人告诉我,我在这里做错了什么。
答案 0 :(得分:3)
trim
只有变量:
if($iamonly == 'Other - ' && trim($othertype) == '') {
答案 1 :(得分:2)
此:
else if($iamonly == 'Other - ' && trim($othertype == '')) {
echo '<div class="error_message">Error! You selected "Other"</div>';
应该是这样的:
else if($iamonly == 'Other - ' && trim($othertype) == '') {
echo '<div class="error_message">Error! You selected "Other"</div>';