我的php if else语句不起作用

时间:2013-10-17 14:23:23

标签: php

我正在设置一个变量,并根据该变量的值我想显示一些东西

这就是我在php文件的一部分中所做的:

<?php
        if($numResults > 0)
        { ?>
            <button id="unfollow" class="button"> unfollow </button>
    <?php}

        else
        { ?>
            <button id="follow" class="button"> follow </button>
    <?php } ?>

$ numResult的值是1,但它仍然显示两个按钮! 我做错了什么?

1 个答案:

答案 0 :(得分:2)

我建议您在转义HTML时使用此模式:

<?php if($numResults > 0) : ?>
<button id="unfollow" class="button"> unfollow </button>
<?php else : ?>
<button id="follow" class="button"> follow </button>
<?php endif; ?>