Reputation: 49
I'm currently building a service in which students can log in and read messages written by teachers/admins, download files and check their grades.
Problem: I have no idea how to input their grades and how to display them.
I'll try my best to describe what I want to do.
I already have these tables on my MySQL databse and i'm using PHP + Boostrap.
+-------------------------+
| Tables_in_portal |
+-------------------------+
| Messages |
| Students |
| Admins |
| Subject |
| Teachers |
| Classes |
+-------------------------+
Upvotes: 1
Views: 743
Reputation: 582
You can build a teacher panel page, give teachers' their username and password and let the teachers enter grades for each student and then upload using a form. This will automatically add grades in each students' column in the grades table in MySQl which can be seen by students when they login from their portal.
And don't expect anyone to write the whole code for you here.
Upvotes: 1