A client wants me to create a form that sends data to a link, from what I've seen, is using zend, I never got to use this framework and I'm kind of bewildered.
His message was this:
Para realizar a simulação, é necessário chamar o endereço http://simulador.consclic.com.br/simula , passando por POST os seguintes campos:
Segmento (código do segmento)
TxtValor_Min
TxtValor_Max
modocalculo ("credito" ou "parcela")
TxtTelefone (Telefone com DDD embutido)
TxtNome
TxtEmail
TxtCidade (passar o código do CEP no formato 99999-999)
txtContato ("1" = agendar, "0" = não agendar)
rdMomento ("agd" = Agendado ou "imd" = Imediato)
contatoMomento (data e hora do contato)
I created a form in this style:
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script><scripttype="text/javascript">
jQuery(document).ready(function(){
jQuery('.contato_simula').submit(function(){
var dados = jQuery( this ).serialize();
jQuery.ajax({
type: "POST",
url: "http://simulador.consclic.com.br/simula",
data: dados,
success: function( data )
{
alert("deu certo");
}
});
return false;
});
});
</script>
<form name="contato_simula" id="contato_carro" class="contato_simula" method="POST">
<input type="text" class="amount" name="TxtValor_min" />
<input type="text" placeholder="Nome *" name="TxtNome">
<input type="text" placeholder="Cidade *" >
<input type="text" placeholder="Telefone (com DDD)" name="txtTelefone">
<input type="text" placeholder="E-mail *" name="TxtEmail">
<input type="text" placeholder="CEP (indicaremos o corretor mais próximo de você)">
<input type="hidden" name="modocalculo" value="credito">
<input type="hidden" name="txtContato" value="1">
<input type="hidden" name="rdMomento" value="agd">
<input type="submit" value="Quero minha simulação">
</form>
In the ajax url should I put the same link? if I enter the link it appears the error that gives, should I change something of zend?