所以,
我将AJAX应用到我的整个网站。除了1段代码之外,所有的工作都很好。每当我尝试打开此页面时,它会向我显示内部错误(500),但代码很好(当我尝试在没有AJAX的情况下打开它时,它显示完全正常。
这是我用来调用ajax函数的代码:
function liveaddproduct() {
if (window.XMLHttpRequest) {
// code for IE7+, Firefox, Chrome, Opera, Safari
xmlhttp=new XMLHttpRequest();
} else { // code for IE6, IE5
xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
}
xmlhttp.onreadystatechange=function() {
if (xmlhttp.readyState==4 && xmlhttp.status==200) {
document.getElementById("content").innerHTML=xmlhttp.responseText;
}
}
xmlhttp.open("GET","modules/pages/ajax/add-product.php", true);
xmlhttp.send();
}
这是使用ajax时不起作用的代码:
//These two lines work fine but as soon as the foreach starts it'll show the internal error
$dir = "media/productfotos/";
$folder = glob($dir . '*.{*}', GLOB_ONLYDIR);
foreach (new DirectoryIterator($dir) as $img){
if ($img->isDir() && !$img->isDot()) {
echo "<option value=" . $img . ">" . $img . "</option>";
}
}