douzhong5902 2011-05-23 02:00
浏览 60
已采纳

在嵌套if块[关闭]中排除“解析错误:语法错误,意外T_ELSE”故障

I have the following code on my website:

<?php
$loggedout = $_GET["loggedout"];
if ($loggedout=="true") { 
echo '<body class="slider-header" onload="Modalbox.show(\'/data/loggedout\',{width: 576, title: \'Logged Out\'}); return false;">'; else { 
if (isset($_COOKIE["hide"]))
  echo '<body class="slider-header">';
else
  echo '<body class="slider-header" onload="Modalbox.show(\'/data/surveyinvite\',{width: 576, title: \'Website Survey\'}); return false;">';
}; ?>

What this should do is determine if $loggedout equals true and, if so, display /data/loggedout. If $loggedout is not true (or not present), it should then go on to determine if the cookie hide exists. If the cookie does exist, there should be no onload and if the cookie does not exist, it should display /data/surveyinvite.

However, I get the following error when going to my page:

Parse error: syntax error, unexpected T_ELSE in /home/briefs/public_html/index.php on line 16

Line 16 is

echo '<body class="slider-header" onload="Modalbox.show(\'/data/loggedout\',{width: 576, title: \'Logged Out\'}); return false;">'; else { 

I have determined that issue is somewhere in the following (if I get rid of it, $loggedout works as expected):

if (isset($_COOKIE["hide"]))
  echo '<body class="slider-header">';
else
  echo '<body class="slider-header" onload="Modalbox.show(\'/data/surveyinvite\',{width: 576, title: \'Website Survey\'}); return false;">';
}; 

Where is the issue in this code?

  • 写回答

2条回答 默认 最新

  • dsjklb0205 2011-05-23 02:06
    关注

    If you indent your code properly and always use brackets (I know they're not required; do it anyway, because it prevents stupid mistakes like this) then you'll find it much easier to not make such a simple mistake. You were missing several curly brackets, that's all.

    <?php
    $loggedout = $_GET["loggedout"];
    if ($loggedout=="true") { 
        echo '<body class="slider-header" onload="Modalbox.show(\'/data/loggedout\',{width: 576, title: \'Logged Out\'}); return false;">'; 
    } else { 
        if (isset($_COOKIE["hide"])) {
            echo '<body class="slider-header">';
        } else {
            echo '<body class="slider-header" onload="Modalbox.show(\'/data/surveyinvite\',{width: 576, title: \'Website Survey\'}); return false;">';
        }
    }
    ?>
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 程序不包含适用于入口点的静态Main方法
  • ¥15 素材场景中光线烘焙后灯光失效
  • ¥15 请教一下各位,为什么我这个没有实现模拟点击
  • ¥15 执行 virtuoso 命令后,界面没有,cadence 启动不起来
  • ¥50 comfyui下连接animatediff节点生成视频质量非常差的原因
  • ¥20 有关区间dp的问题求解
  • ¥15 多电路系统共用电源的串扰问题
  • ¥15 slam rangenet++配置
  • ¥15 有没有研究水声通信方面的帮我改俩matlab代码
  • ¥15 ubuntu子系统密码忘记