0

在我的 php 网站上,我想使用 javascript 每三秒从 mysql 数据库中检索一次数据。

问题:当我使用 检索数据时SELECT * from msgtable,php 和 javascriptstartTime似乎都不起作用。

JavaScript:

setInterval(function() {
   var link = document.getElementById("chg");
   link.href = "http://google.com.pk";
   link.innerHTML = "<?php  dynamic(); ?>"; 
}, 3000);

function startTime() {
   var today = new Date();
   var s = today.getSeconds();
   s = checkTime(s);

   if( s == s+3 ) { alert("faraz"); }
   document.getElementById('time').innerHTML= s;
   t = setTimeout( function() { startTime() }, 500 );
}

function changeURL() {
   var link = document.getElementById("chg");
   link.href = "http://google.com.pk";
   link.innerHTML = "Google Pakistan"; 
}

function checkTime( i ) {
   if ( i < 10 ) {
      i = "0" + i;
   }
   return i;
}

php:

<?php 
    $connection = mysql_connect("localhost","root","");
    $db_select = mysql_select_db("msgs",$connection);  
    $result = mysql_query("SELECT * FROM msgtable", $connection);

    function dynamic() {
        echo "faraz";

        while ( $row = mysql_fetch_array( $result ) ) {
        echo $row['msgBody'] ;
        }   
    }
?>

HTML:

<body onLoad="startTime()">
    <div id="chg1"> 3 Seconds to Google Pakistan  </div>
    <a href="http://google.it" id="chg">Google Italia</a>
    <!-- Hafiz Faraz Mukhtar-->
    <div id="time"> Time </div>
    <div class="publicOut">Faraz</div>
</body>
4

2 回答 2

1

您不能像这样通过 JavaScript 调用 PHP 函数:

link.innerHTML = "<?php  dynamic(); ?>"; 

您将需要进行 AJAX 调用来运行 PHP 脚本并返回结果。我会推荐使用 jQuery 和 $.ajax,这很容易。

http://api.jquery.com/jQuery.ajax/

于 2013-07-01T04:33:39.867 回答
1

您需要为此使用普通 ajax 或 jquery ajax。使用 javascript setInterval() 函数设置间隔

这是一个示例 jquery ajax 方法

        function request()
         {
           $.ajax ({
           url : "";
           data : {},
           dataType : "" ,
           success : function(success) {} ,
           error : function() {}
           });
         }

setInterval() 语法

     setInterval(request,3000);  // in milliseconds
于 2013-07-01T05:25:58.077 回答