ボタンをクリックして PHP コードを実行しようとしていますが、うまくいきません。これをMAPMサーバーで実行しています。
<html>
<head>
</head>
<div onClick="count();">Click!</div>
<script>
function count() {
var xhr;
if (window.XMLHttpRequest) {
xhr = new XMLHttpRequest();
} else {
xhr = new ActiveXObject("Microsoft.XMLHTTP");
}
xhr.open('GET', 'count.php');
xhr.send();
}
</script>
</body>
</html>
PHP ファイル (count.php) には、次のコードがあります。
<?php
Print "Hello, World!";
?>