Ajax在php exec()页面中发布了一个PHP页面

时间:2014-05-04 13:01:55

标签: php ajax exec

我正在尝试在PHP页面中发布一个php页面,该页面正在执行起诉PHP exec()命令。

这是用于调用页面的代码

exec ("C:/AppServ/php5/php.exe -f C:/AppServ/www/site/test.php varibale1 varibale2 , $output, $return");

正在调用该页面,如果我将一些代码插入到数据库中,那么它可以正常工作,但是当我调用Ajax时,它无效。

我将第三页称为

$.ajax({
    type: 'POST',
    url: 'test3.php',
     data: fd,
    dataType: 'text',
    success: function(response){
    }
});

我的问题是,Ajax调用是否可以在此页面内工作,如果是,那么如何?

0 个答案:

没有答案