ช่วยดูโค๊ดให้ที่ค่ะพอดีต้องการให้มันดึงข้อมูลของบริษัทขึ้นมาแสดงโดยต้องการให้มันตรงกับ user ที่เข้าใช้อ่ะค่ะ
ข้อมูลฐานข้อมูลนะค่ะ
ตารางที่ 1 คือ user
ตารางที่ 2 คือ studetn_year
ตารางที่ 3 คือ contact_com
ตารางที่ 4 คือ company
ประมาณนี้ค่ะทั้งหมดจะมีkeyที่เชื่อมถึงกันหมด
Code (PHP)
<?
include "connect.php";
$sql="select * from company where company.no_company=contact_com.no_company AND contact_com.no_student=student_year.no_student AND studen_year.studentId='$username'";
$result=mysql_db_query($dbname,$sql)or die(mysql_error());
$arr = mysql_fetch_array($result);
$com_name=$arr["com_name"];
?>