Necesito guardar el id para consultar esto mas abajo:
Código PHP:
Ver original<fieldset>
<legend>Habitaciones:</legend>
<label>Para seleccionar varias opciones usar Ctrl + C</label>
<label for="input-siete" class="float"><strong>Habitaciones:</strong></label>
<label for='habitaciones'>
<?php
echo "<select name='habitaciones[]' multiple='multiple' size='4' >";
$rs = mysql_query("SELECT * FROM detalle_habitaciones WHERE id_posada='$id_posada'"); {
$tipo_habitacion_c = $result['tipo_habitacion_c'];
echo "<option value='".$tipo_habitacion_c."'>".$tipo_habitacion_c."</option>";
}
echo "</select>";
?>
</label>
</fieldset>
????