if i have a query like this
$query = mysql_query("
SELECT * FROM tbl_school
INNER JOIN tbl_livingexp ON (tbl_school.schoolname=tbl_livingexp.schoolname)
INNER JOIN tbl_tuition ON (tbl_school.schoolname=tbl_tuition.schoolname)
INNER JOIN tbl_apprequirments ON
(tbl_school.schoolname=tbl_apprequirments.schoolname)
where tbl_school.schoolname = '$schoolname'");
and 3 of the tables contain a column named language.
when i begin to write this code.
while($row = mysql_fetch_assoc($query)) {
//output.
how do i output the column language from only the table tbl_school if i were to type it like this?
$row['language']; ?
i tried $row['tbl_school.language']; but that gave me an error.