I have the following data:
htno sub marks credits
1 a 15 0
1 b 10 0
1 c 25 4
1 d 24 4
1 e 22 2
1 f 12 0
2 a 22 4
2 b 15 0
2 c 23 4
2 d 18 2
2 e 20 4
2 f 6 0
3 a 22 4 n so on
i will provide a form to a user. If the user enters his halticket number "1", then it should display the output in this manner in PHP and MySQL:
Number of Backlogs Passed Subjects
3 3
That means it should count the number of zeros and display the number of backlogs and count the number of non zeros and display the count of passed subjects.
How can I do this?