0
My code:
<?php
header('Content-Type: text/html; charset=utf-8');
$email=$_POST[email];
$nome=$_POST[nome];
$cor=$_POST[cor];
$nascimento=$_POST[nascimento];
$cep=$_POST[cep];
$endereco=$_POST[endereco];
$numero=$_POST[numero];
$complemento=$_POST[complemento];
$referencia=$_POST[referencia];
$bairro=$_POST[bairro];
$cidade=$_POST[cidade];
$uf=$_POST[uf];
mail("[email protected]","Assunto do email","
Nome: $nome
Data de nascimento: $nascimento
CEP: $cep
Endereço: $endereco
Número endereço: $numero
Complemento: $complemento
Referência: $referencia
Bairro: $bairro
Cidade: $cidade
Estado: $uf
");
/* Este header faz o redirecionamento, com alguns GET's que
serão usados na página na qual foi redirecionada. Exemplo, no
formulário foi colocado "João" no campo name="nome",
então nome é = a João. */
header ("location: obrigado/?cor=$cor&nome=$nome&email=$email&cep=$cep&endereco=$endereco&numero=$numero&complemento=$complemento&bairro=$bairro&referencia=$referencia&cidade=$cidade&uf=$uf");
?>
As you can see, in this example he takes the data that is filled in, he sends it to this script PHP
through a <form name="formulario" method="post" action="concluido.php">
.
This script besides sending an email to me with this data registered, it also takes this data and inserts us
GET's
contained in the url to which it will be redirected.
It used to work in the old days, but I can’t make it work anymore. I always thought he was too simple, maybe that’s why he’s having problems.
It’s possible to make this work?
Note: You are redirecting perfectly when using on localhost
, but used in a hospedagem web
occurs THIS MISTAKE:
What mistake happens?
– rray
I will post here in the comments the error :) Just a little while...
– Alexandre Lopes
@rray https://s11.postimg.org/9h98l00s3/Sem_T_tulo20161026093345.png
– Alexandre Lopes
I removed the title tag as it does not need;
– viana