学生向けのポイントシステムを作成するプロジェクトがあります。学生は問題の解答を見ることができますが、もしそうなら、彼らは 2 ポイントを失い、彼らのプロフィールも新しい点数で更新されるべきです。リンクをクリックしてテーブルを更新することはできますか? 私は次のことを試みました:
if($points >0)
{
if(($status== '') || ($newuniq_id!= $uniq_id) || ($newquestion_id!= $quid))
{
$query = "insert into status(uniq_id, user_id, user_name, question_id, status) values('$uniq_id', '$id','$name','$quid','read')";
mysql_query($query);
$newpoints = $points - $cut_points;
$newquery1 = "update $tabl_u set points = '$newpoints' where uniq = '$uniq1'";
$newquer2 = mysql_query($newquery1);
}
}