Hi all,
I have tried a lot of options before posting this thread. Now I am so desperate to resolve this issue, I know its a silly mistake somewhere. Pleas help.
ok, in one page I have a drop down list menu which is called "username_drop" and it is taking its values from a mysql database called "user_access" which has info about the users for that page. So it is taking the username value and the user_id.
In the same page i have a button which calles a second page(access.php), the action of the form is
"access.php?user_id=<?php echo $row_rs_user_group['user_id']; ?>"
I know that the bold part from the above is wrong. How can I make the browser take the value of whatever is selected from the list menu. Because at the moment its only taking one value no matter what i select.
Basically, what I need is: I want to update a specific field from a table in mysql. I have a list menu and a button in one page which should pass the value of what ever is selected to the second page which then will change the details of that person.
Please help/ I have tried everything I know