Good morning, I have to do maintenance on an old form and I'm trying to understand how it works ...
Below the file form_proposta.php
<?
$msg = "Mais informações de imóvel enviado em " . date("d/m/Y") . ", os dados seguem abaixo: " . chr(13) . chr(10) . chr(10); //nessa linha, estará impresso em que data e hora foi enviado o formulário
$msg .= "Código : " .$codigo . chr(13) . chr(10);
$msg .= "Nome : " . $nome . chr(13) . chr(10); //aqui o campo nome
$msg .= "E-mail : " . $email . chr(13) . chr(10); //campo email
$msg .= "Endereço : " . $endereco . chr(13) . chr(10); //campo endereco
$msg .= "Telefone : " . $telefone . chr(13) . chr(10); //campo telefone
$msg .= "Mensagem : " . $mensagem . chr(13) . chr(10); //campo mensagem
$Remetente = $email; //aqui, colocamos que o email digitado seja quem enviou o formulário, pode ser substituido por "Contato do Site", assim, sairá sempre que quem enviou o email, seja Contato do Site
$para = $email_from;
mail($para, "Proposta do site",$msg,"From: $Remetente\n");
?>
Below is the html page
<form action="../exec/form_proposta.php" method="post" >
<table align="center" border="0" cellpadding="0" cellspacing="1" >
<tr align="left">
<td align="left">Código: </td>
<td align="left">
<h1>{$imo_cod}</h1>
</td>
</tr>
<tr align="left">
<td >Nome: </td>
<td align="left"> <input type="text" name="nome" style="width:400px;" class="campo"> </td>
</tr>
<tr align="left">
<td>E-mail: </td>
<td align="left"> <input type="text" name="email" style="width:400px;" class="campo"> </td>
</tr>
<tr align="left">
<td>Telefone: </td>
<td align="left"> <input type="text" name="telefone" style="width:400px;" class="campo"> </td>
</tr>
<tr align="left">
<td>Endereço: </td>
<td align="left"> <input type="text" name="endereco" style="width:400px;" class="campo"> </td>
</tr>
<tr align="left">
<td align="left">Mensagem: </td>
<td align="left"> <textarea rows="6" name="mensagem" style="width:400px;" class="campo"></textarea> </td>
</tr>
<tr>
<td colspan="2" align="center"><br>
<input type="submit" name="submit" value="Enviar" style="width:100px;" class="campo" />
<input type="reset" name="reset" value="Limpar" style="width:100px;" class="campo" />
<input type="hidden" name="codigo" value="{$imo_cod}" />
<input type="hidden" name="email_from" value="{$alt_email}" />
</td>
</tr>
</table>
</form>
I'm looking at these codes for a long time and I do not understand how this business can work, the php file is not included in nor another file is directly triggered by the form ...
At no time did I find the place where the $ _POST are taken and the $ variables assigned ...
Basically my conclusion so far is that it works with magic kkk Can anyone help me understand how this business works?