OK,
Here goes.
FIRST:
Everybody here is being nice enough to spend some time helping other people. Since we cannot understand what you <obviously?> cannot do.. perhaps you might spend some time thinking about why you are asking help. If it is complicated, make sure you describe the problem exactly. Dont start shouting.
SECOND:
This is something like what you COULD do.:
Each row with a URL for which has to be voted has an ID. You can use this ID to name the options:
Select * from table
blablabla
while ($row =@ mysqlfetcharray.....blablabla .....)
{
<select name=$row[id]>
<option value="1">1</option>
<option value="2">2</option>
</select>
}
Subsequently use that to submit:
for each $_post[]
insert into table ($judge) values ($value) where id = $key
Or something along those lines. With a bit more time I am sure you can figure it out. To be honest: I do not feel like spending a lot of time on a solid reply for you, if you start shouting about if two people misunderstand the problem...
Check the foreach function, the $_post function, and combining the 2, along the lines of above example, will give you the solution. Or come back later with some worked-out ideas, and try again. Ask nicely. People here are doing this for free, to help other people. Please remember that.
J.