-2
I’m learning to program a short time and I’m creating my first system, which is a school bulletin system, where I have a tab called students that contains a table generated through a registration, each item of this table has an edit icon that redirects the user to a form where he records the respective student’s grade. I need that when the user clicks on the icon and it is redirected to the form the registered notes should be from the selected student. And the whole page is made with bootstrap
if possible put your Cod, print screens and or even bank modeling
– Jasar Orion
Hello Pedro. You need to study a bit about HTTP methods like GET and POST. In your case specifically you could use GET to send the student code to another page. In your edit icon should contain a link that goes to the notes view page and in the link include the student code that you want to view. Already on the notes page you capture this value to search with it in your database.
– Bruno