Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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.

.

share|improve this question
Please, don't do too much spaces between the variable names – Martin. Nov 22 '11 at 12:53
1  
nice formatting – Svisstack Nov 22 '11 at 12:53
3  
Again, please, read about SQL Injection – Martin. Nov 22 '11 at 12:54
1  
bcos i'm on mobile, and i just have to keep some indentations.... – dotman14 Nov 22 '11 at 12:54
8  
You typed all this on your mobile? – BoltClock Nov 22 '11 at 12:54
show 7 more comments

4 Answers

up vote 1 down vote accepted

But i only got the Outputs for Matric_no

This isn't possible as you never send that query to MySQL to process. Try

<?php
$result = mysql_query("
SELECT matric_no, session, semester, course_name, test,exam, practical, (test + exam + practical) AS total
FROM main_table 
WHERE matric_no = '".mysql_real_escape_string($_POST['matric_no'])."'
AND  session = '".mysql_real_escape_string($_POST['session']."'
AND semester = '".mysql_real_escape_string($_POST['semester']."'
AND course_name = '".mysql_real_escape_string($_POST['course_name']."'") or 
die(mysql_error());

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 />";
}

I have also removed the SQLi, you should read something about SQL Injection

share|improve this answer
exactly what i have there, but still the same output...... I also did var_dump($row); and only values for matric_no , course_name and session was returned. – dotman14 Nov 22 '11 at 13:33
can you give us the exact output from var_dump($row) into your question please? – Martin. Nov 22 '11 at 14:28
@Martin... Here's what i got... array 0 => sting 'APH-201' (Lenght=7) 'course_name' => string 'APH-201' (lenght=7) 1 => string '2011/2012' (lenght=9) 'session' => string '2011/2012' (lenght=9) 2 => string '054016' (lenght=6) 'matric_no' => string '054016' (lenght=6) – dotman14 Nov 22 '11 at 16:00
@dotman14: Try my updated code. You should get an error if there are any – Martin. Nov 22 '11 at 16:07
@Martin.. After using the update i got this FUNCTION results.practical does not exist. NOTE: results is the name of my database. – dotman14 Nov 22 '11 at 16:37
show 4 more comments

I dont see how you translating $query into $result. And use print_r($row) inside loop to check how data inside looks like, using printf is not cost effective for this problems.

Also in offtopic i say think about other sql query creating system, not with contacting values bring from $_POST array because you are very vulnerable to sql injection doing this way.

share|improve this answer
after doin that i got FUNCTIN results.exam does not exit. Result is the name of my database. – dotman14 Nov 22 '11 at 13:02

You can do this

<?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]'";
$result = mysql_query($query);
while ($row = mysql_fetch_assoc($result)) 
{
    echo "Matric Number: " . $row['matric_no'] . "<br /><br />";
    echo "Course: " . $row['course_name'] . "<br /><br />";
    echo "semester: " . $row['semester'] . "<br /><br />";  
    echo "Session: " . $row['session'] . "<br /><br />";
    echo "Test: " . $row['test'] . "<br /><br />";
    echo "Exam: " . $row['exam'] . "<br /><br />";
    echo "Practical: " . $row['practical '] . "<br /><br />";
    echo "Total: " . $row['total '] . "<br /><br />";
}
?>
share|improve this answer
This is so full of security holes... – Damien Pirsy Nov 22 '11 at 14:27

Drop the comma's between the AND and WHERE statements? And $result isn't set anywhere.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.