PHP代码显示为文本。不执行实际代码

时间:2015-01-25 14:28:51

标签: javascript php html ajax

我有一个名为order.php的页面,它使用Ajax在检索服务器日期时调用serverTime.php。 Xampp已经打开,其他项目的其他php文件工作正常。

但它会返回代码的文本。

PHP code not working.

这是order.php的代码

<html>
<body>

<script language="javascript" type="text/javascript">
<!-- 
//Browser Support Code
function ajaxFunction(){
    var ajaxRequest;  // The variable that makes Ajax possible!

    try{
        // Opera 8.0+, Firefox, Safari
        ajaxRequest = new XMLHttpRequest();
    } catch (e){
        // Internet Explorer Browsers
        try{
            ajaxRequest = new ActiveXObject("Msxml2.XMLHTTP");
        } catch (e) {
            try{
                ajaxRequest = new ActiveXObject("Microsoft.XMLHTTP");
            } catch (e){
                // Something went wrong
                alert("Your browser broke!");
                return false;
            }
        }
    }
    // Create a function that will receive data sent from the server
    ajaxRequest.onreadystatechange = function(){
        if(ajaxRequest.readyState == 4){
            document.myForm.time.value = ajaxRequest.responseText;
        }
    }
    ajaxRequest.open("GET", "serverTime.php", true);
    ajaxRequest.send(null); 
}

//-->
</script>



<form name='myForm'>
Name: <input type='text' onChange="ajaxFunction();" name='username' /> <br />
Button: <input type='button' onClick="ajaxFunction();"/> <br/>
Time: <input type='text' name='time' />
</form>
</body>
</html>

这是serverTime.php的代码

<?php

echo date("H:i:s"); 

?>

0 个答案:

没有答案