I have an dynamic POST array like this.
Array
(
[56-1] => 9
[56-2] => 7
[56-3] => 2
[56-4] => 3
[66-1] => 1
[66-2] => 5
..................... so on...........
}
Now what i want to do is - Store the below array values in the table like this
Book ID Author ID Rating
56 1 9
56 2 7
56 3 2
56 4 3
66 1 1
66 2 5
Thanks, Kimz