<li>
<a tabindex="-1" class ="accept" id="accept"
href="accept.php?claimid=<?php echo$row['claimid']?>">
Accept
</a>
</li>
action.php
<?php
if(isset($_POST['username'])) {
$action = addslashes($_POST['action']);
}
$sql = "UPDATE claim set
username='".$_SESSION['username']."',
action='accept'
where claimid=".$_GET['claimid']."";
$result=mysql_query($sql) OR die(mysql_error());
?>
ページで、私は受け入れて拒否するなどのアクションを持っています ページをリロードせずにここで受け入れたい