Ver Mensaje Individual
  #1 (permalink)  
Antiguo 18/05/2010, 07:11
jordixip2
 
Fecha de Ingreso: mayo-2010
Mensajes: 112
Antigüedad: 13 años, 11 meses
Puntos: 0
Consulta select name

Tengo este formulario,

<form action="new_delete.php" method="post">
<select name="isbn">
<?php while ($row=mysql_fetch_array($result))
{ ?>
<option value="<?php echo $otro_contador; ?>"><?php echo $row['ISBN']; ?></option>
<?php $otro_contador=$otro_contador+1;
} ?>
</select>
<input name="boton" type="submit" value="Enviar" />

</form>

Como accedo a esa opcion selecciona? Lo hago de la siguiente manera y no me sale..:
$otra="select * from ss.articles where ISBN like '" . $_POST[isbn] . "'"; y asi tampoco
$otra="select * from ss.articles where ISBN like '" . $_POST['isbn'] . "'";

Gracias