我在主机上出现“ PHP MVC权限”复选框有问题

时间:2019-06-18 20:01:00

标签: php html

我有一些权限方法代码。当我上传主机时,我看不到复选框,但是我可以在localhost上看到复选框,并且它可以在localhost上运行,我没有任何问题

如果我在主机上清理PHP代码,则可以看到复选框

<div class="row">
    <div class="col-sm-12">
         <div class="form-group">
             <label class="control-label"><b>Choose Permissions:</b></label>
                <hr>
         </div>
    </div>

           <?php 
            foreach(PERMISSIONS as $key => $value){
           ?>
                <div class="col-md-4">
                    <label class="checkbox-inline"   
                        <input type="checkbox" name="permissions[]" value="<?=$key;?>">&nbsp; <?=$value;?>
                </label>
            </div>
            <?php
            }
            ?>
</div>

enter image description here

这是在localhost上,我可以看到复选框,但在webhost上却看不到

0 个答案:

没有答案