![Antiguo](http://static.forosdelweb.com/fdwtheme/images/statusicon/post_old.gif)
18/05/2010, 07:11
|
| | Fecha de Ingreso: mayo-2010
Mensajes: 112
Antigüedad: 14 años, 8 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 |