<option value='?fecha=$rowCat[id]' selected>$rowCat[categoria]</option>
Alguien me puede ayudar gracias, dejo el archivo: fecha.php
Código:
<script> function nav(value) { if (value != "") { location.href = value; } } </script> <? include('conexion.php'); $db_conex = mysql_connect("$db_host","$db_user","$db_password"); $db_selected = mysql_select_db("$db_name", $db_conex); $sqlQueryCat = mysql_query("SELECT * FROM categorias order by id", $db_conex) or die(mysql_error); echo' <select onChange=nav(this.value)>'; while($rowCat = mysql_fetch_array($sqlQueryCat)){ echo " <option value='?fecha=$rowCat[id]'>$rowCat[categoria]</option>"; } echo '</select>'; ?>