error drop down classipress 3.4
hi, how to recover the value to be displayed on the page chosen by the user because the value does not fit on the future page.
where the problem?
----------------------------->
<form action="<?php echo home_url( '/' ); ?>" method="get" name="refine-search">
<div class="searchsection">
<select name="cp_test" id="cp_test" value="<?php if (isset($_GET['cp_test'])) { echo $_GET['cp_test']; } ?>"
<option value="0">select</option>
<option value="1">test1</option>
<option value="2">test2</option>
<option value="3">test3</option>
</select>
</div>
</form>