我正在尝试添加一个“if and”语句,但无法使其正常工作。
else if($iamonly == 'Other - ' && trim($othertype == '')) {
echo '<div class="error_message">Error! You selected "Other"</div>';
如果$iamonly
字段是“其他”并且我在$othertype
字段中输入数据,我仍然会收到错误消息。请有人能告诉我我在这里做错了什么。
我正在尝试添加一个“if and”语句,但无法使其正常工作。
else if($iamonly == 'Other - ' && trim($othertype == '')) {
echo '<div class="error_message">Error! You selected "Other"</div>';
如果$iamonly
字段是“其他”并且我在$othertype
字段中输入数据,我仍然会收到错误消息。请有人能告诉我我在这里做错了什么。
trim
只有变量:
if($iamonly == 'Other - ' && trim($othertype) == '') {
这个:
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>';