当我在线访问我的页面时,我不断收到此错误消息。我已经完成了与此相关的所有解决方案。但我似乎无法找到能够修复我的代码的答案。 我的代码是
function messages(){
$message ='';
//this is the line with the error
if($_SESSION['success'] != '';) {
$message = '<div class="msg-ok">' .S_SESSION['success'].'</div>'; $_SESSION['success'] = '';
}
if($_SESSION['error'] != '') {
$message = '<div class="msg-error">'.$_SESSION['error'].'</div>';
$_SESSION['error] = '';
}
echo "$message";
}
答案 0 :(得分:2)
从您的条件中删除半列(;):
if($_SESSION['success'] != '';)
替换它
if($_SESSION['success'] != '')
你也可以使用它:
**if(!empty($_SESSION['success']))**