我想在加载期间执行查询。我该怎么做?这是我的代码。这是我要执行的查询。
<?php
mysql_query("UPDATE `requests` SET `stat_id`= 3 WHERE `proj_id`='".$_GET['projid']."' and DATE(`req_date`)='".$_GET['date']."'");
?>
我有一个javascript
<script type="text/javascript">
$(document).ready(function(){
$('input#approve').click(function(){
var date = $(this).parent().attr('id');
var projid = $(this).parent().attr('class');
window.location.href="index.php?page=requests&date="+date+"&projid="+projid+"";
});
});
</script>
单击按钮批准时,页面刷新,但查询未执行。