I don't want zoho form redirect

I don't want zoho form redirect

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.

  1. <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">
  2. <!-- campos editaveis -->
  3. <input type="hidden" name="First Name" value="<?php echo $first_name?>" />
  4. <input type="hidden" name="Last Name" value="<?php echo $last_name?>" />
  5. <input type="hidden" name="Phone" value="<?php echo $phone?>" />
  6. <input type="hidden" name="Email" value="<?php echo $email?>" />
  7. <input type="hidden" name="Mobile" value="<?php echo $cel?>"></input>
  8. <input type="hidden" name="Company" value="<?php echo $company?>" />
  9. <input type='hidden' name=CANCELEDINTHEPOST'  value="<?php echo $oper_p?>" />
  10. <input type='hidden' name='Zip Code' value="<?php echo $cep?>" />
  11. <input type='hidden' name='Street' value="<?php echo $endereco?>" />
  12. <input type='hidden' name='City' value="<?php echo $cidade?>" />
  13. <input type='hidden' name='State' value="<?php echo $estado?>" /> 

  14. <!-- campos hidden  -->
  15. <input type='hidden' name='xnQsjsdp' value=CANCELEDINTHEPOST />
  16. <input type='hidden' name='xmIwtLD' value=CANCELEDINTHEPOST />
  17. <input type='hidden' name='actionType' value=TGVhZHM= />
  18. <input name="Lead Source" value="Site DeskManager" type="hidden">
  19. </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":

  1. if ($enviado) {
  2. $msg ="A mensagem foi enviada com sucesso!";
  3. $tr ='N';
  4. include 'plano_assinado.php';

 How can I desable zoho auto redirect?