wordpress从自定义表调用获取数据到ajax错误

时间:2014-09-18 12:00:43

标签: php jquery ajax wordpress wordpress-plugin

我试图从按钮单击jquery和ajax时获取自定义表中的数据,但我收到错误 怎么解决这个问题。

  

致命错误:在非对象上调用成员函数get_results()   在C:\ xampp \ htdocs \ getwp \ wp-content \ plugins \ getwp_P \ display.php on   第3行

我的jquery就在这里

  

$(document).ready(function(){

$("#display").click(function() {          
  $.ajax({    //create an ajax request to load_page.php
    type: "GET",
    url: "display.php",                   
    dataType: "html",   //expect html to be returned                
    success: function(response){                    
        $("#responsecontainer").html(response); 
        //alert(response);
    }

}); }); });

display.php就在这里

  get_results(“SELECT * from   `wp_school_post`“);   echo“”; echo“ID”; foreach($行为$行)   {echo   “”; echo“$ row-> postid”; echo“”;   }   回声   “”; ?>

html按钮

<input type="button" id="display" class="button" value="Fetch All Data" onClick="fetch_data();" /> 

<div id="responsecontainer" align="center">

任何解决方案

1 个答案:

答案 0 :(得分:0)

在display.php之上  的 WP-config.php中  要么  的 WP-load.php