外部PHP文件返回结果错误?

时间:2013-09-27 16:06:40

标签: php jquery mysql wordpress-plugin

我有一个更新mysql数据库的外部PHP文件(这个文件与jquery和ajax的主题连接)。

这是来自ext文件的简化代码

<?php

$file = dirname(__FILE__);
$file = substr($file, 0, stripos($file, "wp-content") );

require( $file . "/wp-load.php");

if (something){echo ($var);}
else {echo ('eg97');}

?>

这是我得到的结果(当条件不满足时):

<!-- 
function add_jquery() 
{
    wp_enqueue_script( 'jquery' ); 
} 

add_action('wp_enqueue_scripts', 'add_jquery'); 
?> 

function open_mysql_db() 
{ 
    $mysqli = new mysqli('address of database', 'username', 'password', 'database name'); 
    // check connection 
    if (!$mysqli) 
        throw new Exception('Could not connect to database'); 
    else 
        return $mysqli; 
};
--> 97

我想要的只是97(或$ var)。

有什么想法吗?

0 个答案:

没有答案