语法错误,意想不到的'endif'(T

这个问题在这里已经有了答案:

  • PHP解析/语法错误; 以及如何解决它们? 13个答案

  • 以下是做什么?

    <?php endif; ?>
    

    您正在关闭一个不存在的if语句 - 基于您提供的代码。


    你在if语句中缺少分号

    视图

    if ($exec == 'true'){
        echo '<script type="text/javascript">
        alert("email alreay exist");
        </script>';
    }
    

    调节器

    if($exec) {
        true;
    } else {
        FALSE;
    }
    

    请根据上述说明替换您的代码。 我希望它能为你效劳!


    简单的答案。 删除<?php endif; ?> <?php endif; ?>从你的代码和它的作品就像一个魅力。 另外,ADD ; echo陈述的结尾

    链接地址: http://www.djcxy.com/p/69861.html

    上一篇: syntax error, unexpected 'endif' (T

    下一篇: PHP Parse error: syntax error, unexpected 'endif' (T