I'm using jQuery raty for a personal website. I have a form and raty generates the following for each set of stars
<input type="hidden" name="score" value="5">
where value contains the values I want to get.
I have 10 fields with 5 stars each, and I want to get all 10 ratings with PHP/POST to insert into database.
What do I do about the fact that the inputs have the same name? I am aware that if it was name="score[]" I could access the ratings in an array, but I don't think I can change the name that raty assigns to inputs