我有这段代码:
<div style="width:100%; position:fixed; z-index:999; top:0; left:0; padding:10px; background-color:#666666; height:50px;">
<h3><button id="inbox_button" >Inbox <?php echo $messages_num; ?></button></h3>
<div id="inbox_div" style="background-color:#eeeeee; width:350px; height:400px; overflow-y:scroll; display:none; margin-top:20px; padding:0px;">
<?php require_once $_SERVER['DOCUMENT_ROOT'].'/admin/includes/menu_messages.php'; ?>
</div>
</div>
我正在使用require_once来包含一个php文件。文件(menu_messages.php
)中有PHP变量$messages_num;
,如何在Inbox button
上回显 - 我上面有echoed
但是没有显示
答案 0 :(得分:1)
在调用存储在其中的任何变量之前,您需要包含其他php文件。
答案 1 :(得分:0)
您应首先要求文件,输出为空,因为尚未加载包含变量的文件。