Jump to content

dr.wong

New Members
  • Posts

    2
  • Joined

  • Last visited

    Never

Profile Information

  • Gender
    Not Telling

dr.wong's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. Hey everyone. Let say I have two tables in a MySQL database. Once called 'Marks' and another called 'Students' The table 'Students' has two columns being : "Name" and "Student_ID" and The table 'Marks' has three columns being "ID" (Auto Increment), "Student_ID" and "Mark" Now lets say that we wanted to write a script that kept a record of the students marks. The table 'Students' would be used to generate a form on the page, basically pulling all the names and Student ID's out of its rows and using a loop to show all of the students in the table. So if we had three students, the form would look like this : John |__markfield__| |__ID Field__| Mike |__markfield__| |__ID Field__| Tony|__markfield__| |__ID Field__| The field 'ID FIELD' is hidden and has a value of the students unique ID. The 'markfield' is an input where you can put the students mark. When we press submit, we want all of the marks and their corresponding student ID's to be placed into the table 'Marks'. Later, if we wanted to retrieve any students marks, we could just call 'Select from MARKS where Student_ID = 110115' (or what ever the students ID is) This would show ALL of his marks in a similar loop as we used to display the form. My Question is.. How do I insert all of these new rows at once? Remember that I will not know how many students are in the table 'Students' as new ones would be added all the time. Any suggestions?
  2. Hey everyone. Let say I have two tables in a MySQL database. Once called 'Marks' and another called 'Students' The table 'Students' has two columns being : "Name" and "Student_ID" and The table 'Marks' has three columns being "ID" (Auto Increment), "Student_ID" and "Mark" Now lets say that we wanted to write a script that kept a record of the students marks. The table 'Students' would be used to generate a form on the page, basically pulling all the names and Student ID's out of its rows and using a loop to show all of the students in the table. So if we had three students, the form would look like this : John |__markfield__| |__ID Field__| Mike |__markfield__| |__ID Field__| Tony|__markfield__| |__ID Field__| The field 'ID FIELD' is hidden and has a value of the students unique ID. The 'markfield' is an input where you can put the students mark. When we press submit, we want all of the marks and their corresponding student ID's to be placed into the table 'Marks'. Later, if we wanted to retrieve any students marks, we could just call 'Select from MARKS where Student_ID = 110115' (or what ever the students ID is) This would show ALL of his marks in a similar loop as we used to display the form. My Question is.. How do I insert all of these new rows at once? Remember that I will not know how many students are in the table 'Students' as new ones would be added all the time. Any suggestions?
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.