Good day to all:
Typically, when one pass variables via url, they are received and displayed in a input text box.
I'm interested in passing two variables (firstname and lastname) via url; except, I want to be able to get them on another page [key point ], in a select box. The select box is populated with data from mysql and contains the value of the variable being passed via url. I simply want to be able to have these two variables displayed in the box as if they were selected via keyboard.
Not sure if I'm making any sense, let me strenghten my point with an example:
url with variables:
/andy/admin/categories/paymentrecorder.php?sel_id=title14,title13
My selection box (data from mysql)
<select>
<OPTION>Select One
<OPTION>title14
<OPTION>title13
<OPTION>title12
<OPTION>title11
<OPTION>...
<OPTION>..
<OPTION>.
</select></span></td>
Is this doable --any thoughts?
Mossa