Ver Mensaje Individual
  #7 (permalink)  
Antiguo 14/10/2017, 09:34
alvaro_trewhela
Invitado
 
Mensajes: n/a
Puntos:
Respuesta: Pasar signo igual y el & por Get

Te explico cuando tu haces action="ventas.php?id=cash"

Enviara la petición del formulario a dicha página por lo que, si mezclas con método post tendrás tanto el get como post

<form method="post" action="ventas.php?site=cash">

Así SIN MÁS te llevará a ventas.php?site=cash . Por lo que ya tienes acceso al $_GET["cash"];

Ahora como estamos usando el método post, y usamos el input invoice ya tendremos acceso a $_POST["invoice"];


Ahora más allá de teoría, has la prueba (No toques nada) y entenderás:

formulario.html
Código HTML:
Ver original
  1. <form method="post" action="ventas.php?id=cash">
  2. <input type="text" name="invoice" />
  3. <input type="submit" value="GO!" />
  4. </form>



ventas.php

Código PHP:
Ver original
  1. <?php
  2.  
  3. echo "Este es el get: ".$_GET["id"]." y este es el post: ".$_POST["invoice"];
  4.  
  5. ?>