私のHTMLファイル:
<head>
<script src="http://code.jquery.com/jquery-1.9.1.js"></script>
</head>
<body>
<script>
var session;
$.ajaxSetup({cache: false})
$.get('ajax2.php');
</script>
</body>
私のajax2.phpファイル
mysql_connect("localhost", "root", "root") or die(mysql_error());
mysql_select_db("final") or die(mysql_error());
mysql_query("UPDATE `final` SET `phone_number` = `phone_number` + 1 WHERE `name` = 'gerg' ");
ajax2.php を実行すると、正常に動作します (値が 1 増加します)。ただし、ajax.html からはアクセスできません。私の間違いはどこですか?ありがとうございました。