
30/09/2009, 07:26
|
 | | | Fecha de Ingreso: marzo-2007 Ubicación: Chile
Mensajes: 222
Antigüedad: 18 años Puntos: 6 | |
Respuesta: Formulario no me pasa variables Puedes probar con lo siguiente....
.
.
.
if(trim($HTTP_POST_VARS["nombre"]) != "" && trim($HTTP_POST_VARS["documento"]) != "")
{
extract($_POST);
$sql = "SELECT id FROM tango WHERE documento='$documento'";
$result = mysql_query($sql);
if($row = mysql_fetch_array($result))
.
.
. |