I need to build a little page that quieries a Sybase Dabase, displays all the entries for the user, then allows the user to choose to either approve or deny each entry. Then click the button on the bottom. That'll trip a flag in the DB to say if each record is approved or denied.
So.. I'm using a while ($row = sybase_fetch_array($result)) in order to get all the entries and display them nicely in an HTML table for the user. Next to each entry I've put a radio button, one option to approve one option to deny. Then at the bottom there is a button to submit the information.
However when I submit, only the very last radio button value is passing.
How can I do this so it works? Any examples out there I could follow?
Of course I will not know how many entries are in the database at any given time, so it has to be a dynamic sort of display.
Thanks!