Dispongo del siguiente formulario:
donde debo seleccionar el Local de Venta, en la variable local.
Código PHP:
<form action="prueba.php" method="post" name="inventario">
<table width="100%" border="0" cellspacing="0" cellpadding="5">
<tr>
<td width="25%"> </td>
<td colspan="2">Seleccione Local</td>
</tr>
<tr>
<td> </td>
<td width="10%"> </td>
<td width="65%">
<select name=local id="select">
<option value=01 selected="selected">Lira</option>
<option value=04>Carmen</option>
</select>
</td>
</tr>
</table>
Código PHP:
<table width="100%" border="0" cellspacing="0" cellpadding="5">
<tr>
<td width="25%"> </td>
<td colspan="2">Seleccion para Local 1</td>
</tr>
<tr>
<td> </td>
<td width="10%"> </td>
<td width="65%">
<select name=orden id="select">
<option value="c" selected="selected">codigo</option>
<option value="a">alfabetico</option>
</select>
</td>
</tr>
</table>
Código PHP:
<table width="100%" border="0" cellspacing="0" cellpadding="5">
<tr>
<td width="25%"> </td>
<td colspan="2">Seleccion para Local 4</td>
</tr>
<tr>
<td> </td>
<td width="10%"> </td>
<td width="65%">
<select name=orden id="select">
<option value="es" selected="selected">Estanteria</option>
<option value="co">Codigo</option>
</select>
</td>
</tr>
</table>
Si alguien sabe si es posible hacerlo en php, me lo indique a traves de un ejemplo o documentacion al respecto, le agradezco su informacion.