Ver Mensaje Individual
  #4 (permalink)  
Antiguo 12/10/2017, 07:19
alvaro_trewhela
Invitado
 
Mensajes: n/a
Puntos:
Respuesta: Pasar signo igual y el & por Get

Usa entonces el action del form:

Por ejemplo, tu puedes tener esto:

<form method="post" action="ventas.php?id=cash">
<input type="text" name="invoice" />
<input type="submit" value="send" />
</form>

Y así tines

$id = $_GET["id"];
$invoice = $_POST["invoice"];

Última edición por alvaro_trewhela; 12/10/2017 a las 07:28