Hello, a quick question.
If you have a PHP dynamic dropdown menu (that autopopulates with info from a mysql table), then the menu automatically links to its values, i.e. "page.php?value1=value1", correct?
If you have two dropdown menus, then it becomes "page.php?value1=value1&value2=value2".
Is there any way to make the dropdowns link to an absolute url? For example, instead of "page.php?value1=value1", it becomes "page/value1", etc.
I know that there is Apache mod_rewrite involved, and I am NOT asking about the rewrite (I am well aware of how to do this); I am asking about making the dropdowns link to whatever URL I wish it to link to when wrapped in a PHP code.
I have tried just making the value in my select menu the url, but then it turns into "page.php?value1=http://site.com/page/value1" which obviously neither works nor is what I want it to do.