<?php session_start(); ?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>Untitled Document</title> </head> <body> <?php include('../includes/connect_db.php'); $sid = $_SESSION['login']; $sql1 = "select * from student where SID = '$sid'"; $result1 = mysql_query($sql1) or die ("<script>alert('error')</script>"); $array1 = mysql_fetch_array($result1); $Level_Id = $array1['Level_Id']; $sql2 = "select * from grade_all where SID='$sid' and term = 1 and Level_Id = 1 "; $result2 = mysql_query($sql2) or die ("<script>alert('error')</script>"); while($array2 = mysql_fetch_array($result2)) { $sumunit = + $array2[unit]; echo "$sumunit"; }; ?> </body> </html>
$sql2 = mysql_fetch_array(mysql_query("select sum(unit) as unit from grade_all where SID='$sid' and term = 1 and Level_Id = 1")); $sumunit = $sql2['unit'] // รวมมาแล้วครับ
เพื่อความปลอดภัยของเว็บบอร์ด ไม่อนุญาติให้แทรก แท็ก [img]....[/img] โดยการอัพโหลดไฟล์รูปจากที่อื่น เช่นเว็บไซต์ ฟรีอัพโหลดต่าง ๆ อัพโหลดแทรกรูปภาพ ให้ใช้บริการอัพโหลดไฟล์ของไทยครีเอท และตัดรูปภาพให้พอดีกับสกรีน เพื่อความโหลดเร็วและไฟล์ไม่ถูกลบทิ้ง