I have the following code
<?php
$query = "SELECT matric_no,session, semester, course_name,test,exam,
practical (test + exam + practical) AS total
FROM main_table
WHERE matric_no = '$_POST[matric_no]',
AND session = '$_POST[session]',
AND semester = '$_POST[semester]',
AND course_name = '$_POST[course_name]'";
WHILE ($row = mysql_fetch_array($result)) {
echo "Matric Number: " . $row[2] . "<br />";
echo "<br />";
echo "Course: " . $row[0] . "<br />";
echo "<br />";
echo "Session: " . $row[1] . "<br />";
echo "<br />";
echo "Test: " . $row[3] . "<br />";
echo "<br />";
echo "Exam: " . $row[4] . "<br />";
echo "<br />";
echo "Practical: " . $row[5] . "<br />";
echo "<br />";
echo "Total: " . $row[6] . "<br />";
echo "<br />";
}
But i only got the Outputs for Matric_no, Course_name and session.. The others returned Undefined offset for each of the integers in the square brackets.
.
