Código PHP:
<select name="parametro">
<?php
$opcion=$_POST["opcion"];
include("funciones/connect.php");
$string="select $opcion from libros order by $opcion asc";
$resp=mysql_query($string,$link);
while($row=mysql_fetch_array($resp)){
echo "<option>".$row["$opcion"]."</option>";
}
?>
</select>
![Adios](http://static.forosdelweb.com/fdwtheme/images/smilies/adios.gif)