使用php自动刷新div

时间:2015-06-12 06:51:17

标签: javascript php jquery

使用mvc模式使用自动刷新div标签时出现问题。请帮帮我......这是我的代码...... 包含文件名与one1.php:

 <?php 
    $textnameObj = new textname();
    $textname = $textnameObj->getCont('status','1');
    echo $textname['details'];
    ?>

在index.php中调用包含文件名:

<html>
<head>
    <script type="text/javascript">
      setInterval("$('#autoref').load('includes/one1.php');", 10000);
    </script>
</head>
<body>
<div id="autoref">
   <?php include('includes/one1.php'); ?>
</div>
</body></html>

第二次刷新时我遇到了这个错误...... 致命错误:Class&#39; textname&#39;在第2行的includes / one1.php中找不到

1 个答案:

答案 0 :(得分:1)

index.php中,您已包含textname类文件。但是,如果您单独调用includes/one1.php,则不会定义类textname

includes/one1.php中,您必须include_once一个文件,其中定义了textname类。