ให้ update ข้อมูลตามนี้ where ให้ Id ต่างๆตามด้านด้านนี้ตรงกัน แต่มันไปupdate ทุกคนเลยค่ะช่วยแนะทำทีว่าต้องทำยังไง Code (PHP)
if($_POST['point'])
{
$sql = "UPDATE evaluate,training,contact_com,user,student_year,student SET evaluate_1='$evaluate_1',evaluate_2='$evaluate_2',evaluate_3='$evaluate_3',evaluate_4='$evaluate_4',evaluate_5='$evaluate_5',evaluate_6='$evaluate_6',evaluate_7='$evaluate_7',evaluate_8='$evaluate_8',evaluate_9='$evaluate_9',evaluate_10='$evaluate_10',evaluate_11='$evaluate_11',evaluate_12='$evaluate_12',evaluate_13='$evaluate_13',evaluate_14='$evaluate_14',evaluate_15='$evaluate_15',evaluate_16='$evaluate_16',evaluate_17='$evaluate_17',evaluate_18='$evaluate_18' where evaluate.no_training=training.no_training AND training.no_contact=contact_com.no_contact AND contact_com.studentId=student_year.studentId AND student.studentId=user.username";
mysql_query($sql) or die(mysql_error());
header("location:company_assess_2.php");
}