我在Debian8.2上运行lighttpd 1.4.35。我有一个带有php代码(php5)的非常简单的html文件,它调用bash脚本并打印输出:
<html>
<body>
<?php
$res = shell_exec("/var/www/html/run.sh");
echo $res . " is the result";
?>
</body>
</html>
如果在firefox上调用该html文件,则输出为
is the result
如果我直接使用该文件(php in
我试着发送一个数组到PHP,但是,PHP,只有输出“数组”。我有两个文件: forms1.php和forms1.js。PHP语句永远不会变成真。我也尝试过没有if声明。
谢谢您在注释中指出,是的,我调用函数,警报返回整个forms1.php代码。
老标题:为什么我的php文件没有看到获取“结果”?//这个标题是错误的
forms1.js
var nums = [1,2,3,4];
function postcars() {
$.ajax({
type : 'GET',
url : 'forms1.php',
dat
好的,我用macport在我的OS上安装了php5和apache2。php在终端上运行良好,apache也是如此。我已经编辑了我的httpd.conf文件以添加以下内容:
LoadModule php5_module modules/libphp5.so
AddType application/x-httpd-php .php [I have also tried AddHandler here to no avail]
<IfModule dir_module>
DirectoryIndex index.php index.html
</IfMo