PHP if和声明

时间:2012-09-07 08:40:57

标签: php

我正在尝试添加“if and”语句,但无法使其正常工作。

else if($iamonly == 'Other - ' && trim($othertype == '')) {
    echo '<div class="error_message">Error! You selected "Other"</div>';

如果$iamonly字段为“其他”且我在$othertype字段中输入数据,我仍会收到错误消息。请有人告诉我,我在这里做错了什么。

2 个答案:

答案 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>';