Advertisement
Guest User

Untitled

a guest
Apr 27th, 2015
180
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. $cURL = curl_init('http://teste');
  2. curl_setopt($cURL, CURLOPT_RETURNTRANSFER, true);
  3. $dados = array(
  4. 'NMCLIENTE' => $nome_lead,
  5. 'DSEMAIL' => $email_lead,
  6. 'NRTELEFONE' => $telefone_lead,
  7. 'DSINTERESSE' => $meio_captacao,
  8. 'DSMENSAGEM' => $mensagem
  9. );
  10. curl_setopt($cURL, CURLOPT_POST, true);
  11.  
  12. curl_setopt($cURL, CURLOPT_POSTFIELDS, http_build_query($dados));
  13.  
  14. $resultado = curl_exec($cURL);
  15. curl_close($cURL);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement