Is it possible to have two drop-downs dynamically populated?
I tried this:
?downloadsend=send&?test=test2
That worked on the first one, but not the second.
Is it possible to have two drop-downs dynamically populated?
I tried this:
?downloadsend=send&?test=test2
That worked on the first one, but not the second.
That is because your query string isn't formed properly. You can't have 2 question marks in the query string, the question mark BEGINS the query string and you can't have another. The ampersand separates query string parameters, not the question mark.
You have this:
?downloadsend=send&?test=test2
It needs to be:
?downloadsend=send&test=test2
Thanks, that works perfectly.
I'm definitely getting there in understanding just how things work now.