Ver Mensaje Individual
  #5 (permalink)  
Antiguo 15/04/2010, 15:53
WebDeveloperZ
 
Fecha de Ingreso: marzo-2007
Mensajes: 340
Antigüedad: 17 años, 1 mes
Puntos: 4
Respuesta: Resource id #3 (recorriendo un POST)

MM no, creo que ninguno tiene razon, miren:

Código:
Array
(
    [custom_http_referer] => http://localhost/sadas....
    [subscriber_name] => 
    [subscriber_email] => 
    [custom_telefono] => 
    [custom_pais] => 
    [custom_nombre_referido] => Juan Ivan
    [custom_apellido_referido] => Ordoñes
    [custom_codigo_referido] => chk
    [custom_id_referido] => 2
    [custom_email_referido] => [email protected]
    [confirmation_url] => http://www.asdsadsa.com
    [error_url] => http://www.error.com
    [campaign_name] => xxx
    [custom_ref] => 
    [enviar] => enviame
)
Aqui el form:

Cita:
<form accept-charset="utf-8" method="post" action="">

<input type="hidden" name="custom_http_referer" id="custom_http_referer" value="<? echo curPageURL(); ?>"/>

<label for="Name" id="Name">Nombre:</label>
<input type="text" id="subscriber_name" name="subscriber_name" /><br />

<label for="Email" id="Email">Email:</label>
<input type="text" id="subscriber_email" name="subscriber_email" /><br />

<label for="custom_telefono" id="Telefono">Telefono:</label>
<input type="text" id="custom_telefono" name="custom_telefono" /><br />

<label for="custom_pais" id="Pais">Pais:</label>
<input type="text" id="custom_pais" name="custom_pais" /><br />

<input type="hidden" value="<?=$nombre ?>" id="custom_nombre_referido" name="custom_nombre_referido" />
<input type="hidden" value="<?=$apellido ?>" id="custom_apellido_referido" name="custom_apellido_referido" />
<input type="hidden" value="<?=$codigo_referido ?>" id="custom_codigo_referido" name="custom_codigo_referido" />
<input type="hidden" value="<?=$id ?>" id="custom_id_referido" name="custom_id_referido" />
<input type="hidden" value="<?=$email ?>" id="custom_email_referido" name="custom_email_referido" />

<input type="hidden" name="confirmation_url" id="confirmation_url" value="http://www.asdsadsa.com"/>
<input type="hidden" name="error_url" id="error_url" value="http://www.error.com"/>
<input type="hidden" name="campaign_name" id="campaign_name" value="xxx"/>
<input type="hidden" name="custom_ref" id="custom_ref" value=""/>

<input id="webform_submit" type="submit" name="enviar" value="enviame" class="submit-button" />

</form>
Alguna idea ?