在我的页面中,我有以下代码
插入.php
<?php
include ("../config/config.php");
$state = $_POST['state'];
$squery = mysql_query("INSERT INTO ctm_state(state) VALUES('$state')");
if($squery){
echo "Data for $state inserted successfully!";
}
else{ echo "An error occurred!"; }
?>
状态.php
<script type="text/javascript">
$(document).ready(function(){
$("#insert").click(function(){
var state=$("#state").val();
$.post('ctmadmin/ajax_state.php', {state: state},
function(data){
$("#message").html(data);
$("#message").hide();
$("#message").fadeIn(1500); //Fade in the data given by the insert.php file
});
return false;
});
});
</script>
使用上述 URL 时,ajax 工作正常并显示插入数据的正确结果。但是如果 URL 更改为
$.post('ctmadmin/phpqrcode/ajax_state.php', {state: state},
ajax_state 位于另一个名为 phpqrcode 的文件夹中,当我使用上面的 URL 时,它不会将数据插入表中,也不会在首页显示任何内容。任何人都可以帮我解决这个问题