我最近安装了wamp服务器来运行一些php,我继续收到此错误: 解析错误:语法错误,第18行的C:\ wamp64 \ www \ PHP \ form-enquiries.php中的意外“{”
我知道我的代码是正确的,我在其他服务器上进行了测试,它运行得很好
有人可以告诉我为什么会抛出这个错误吗?
<?php
if (strpos($cardtype, 'basic')){
$price = 10;
}
else if (strpos($cardtype, 'medium')){
$price = 15;
}
else (strpos($cardtype, 'high')){ //this is where it says the error is
$price = 20;
}
?>