Hello!I'm new in zoho forum. My problem is this: I have a form zoho integrated in my website in a page that is processing data from another form and take the variables in the zoho form.
- <form action='https://crm.zoho.com/crm/WebToLeadForm' name=CANCELEDINTHEPOST method='POST' onSubmit='javascript:document.charset="UTF-8"; return checkMandatery()' accept-charset='UTF-8' id="formid">
- <!-- campos editaveis -->
- <input type="hidden" name="First Name" value="<?php echo $first_name?>" />
- <input type="hidden" name="Last Name" value="<?php echo $last_name?>" />
- <input type="hidden" name="Phone" value="<?php echo $phone?>" />
- <input type="hidden" name="Email" value="<?php echo $email?>" />
- <input type="hidden" name="Mobile" value="<?php echo $cel?>"></input>
- <input type="hidden" name="Company" value="<?php echo $company?>" />
- <input type='hidden' name=CANCELEDINTHEPOST' value="<?php echo $oper_p?>" />
- <input type='hidden' name='Zip Code' value="<?php echo $cep?>" />
- <input type='hidden' name='Street' value="<?php echo $endereco?>" />
- <input type='hidden' name='City' value="<?php echo $cidade?>" />
- <input type='hidden' name='State' value="<?php echo $estado?>" />
- <!-- campos hidden -->
- <input type='hidden' name='xnQsjsdp' value=CANCELEDINTHEPOST />
- <input type='hidden' name='xmIwtLD' value=CANCELEDINTHEPOST />
- <input type='hidden' name='actionType' value=TGVhZHM= />
- <input name="Lead Source" value="Site DeskManager" type="hidden">
- </form>
This form redirect in the site home page, but I want that stop in that page included in the processing file "plano_assinado.php":
- if ($enviado) {
- $msg ="A mensagem foi enviada com sucesso!";
- $tr ='N';
- include 'plano_assinado.php';
How can I desable zoho auto redirect?