I have an application that uses PHP to access a MySQL table and
extract rows which match the user's search entry. Data from the
matching rows are loaded into an HTML selection list, and the user can
scan the list and highlight a selected item.
My question: In PHP, what is the syntax for identifying which row is
highlighted?
My goal is to pass the unique row ID of the selected item to a
subsequent form where all the fields will be displayed for the user to
edit.
I already have the code that loads the selection list and the code
that displays the fields. I just need to know how to determine the
highlighted item.
I have two PHP books, and both discuss loading the selection list, but
there is no mention of what to do next.
Thanks!!
Mark Jones