Hey, I have a table that contains an id, then a name, then the values for the name and id.
so its like
1 | Name1 | Value11 | Value12 |....
2 | Name2 | Value21 | Value22 |....
3 | Name3 | Value31 | Value32 |....
.......
And what I want to do is to grab these values line at a time and run it thru a PHP script.
I just need to know how to grab the values for Name1 and Name2 and the rest in the same While() script.
Its prly simple, but I just can't think of how to do it.