Usamos cookies para medir audiência e melhorar sua experiência. Você pode aceitar ou recusar a qualquer momento. Veja sobre o iMasters.
Boa tarde!
Olha eu baixei um form em php e na hora que envia ele coleta somente o e-mail e o nome, já tentei de tudo e não consigo fazer ele coletar o campo whats, Alguém pode dar uma olhadinha e me ajudar por favor?
<?php
/*
This first bit sets the email address that you want the form to be submitted to.
You will need to change this value to a valid email address that you can access.
*/
$webmaster_email = "adrianoncaldeira@gmail.com";
/*
This bit sets the URLs of the supporting pages.
If you change the names of any of the pages, you will need to change the values here.
*/
$imc = "imc.html";
$error_page = "error_message.html";
$calculadora_imc = "calculadora_imc.html";
/*
This next bit loads the form field data into variables.
If you add a form field, you will need to add it here.
*/
$email_address = $_REQUEST['email_address'] ;
$nome= $_REQUEST['nome'] ;
$whats = $_REQUEST['whats'] ;
/*
The following function checks for email injection.
Specifically, it checks for carriage returns - typically used by spammers to inject a CC list.
*/
function isInjected($str) {
$injections = array('(\n+)',
'(\r+)',
'(\t+)',
'(%0A+)',
'(%0D+)',
'(%08+)',
'(%09+)'
);
$inject = join('|', $injections);
$inject = "/$inject/i";
if(preg_match($inject,$str)) {
return true;
}
else {
return false;
}
}
// If the user tries to access this script directly, redirect them to the feedback form,
if (!isset($_REQUEST['email_address'])) {
header( "Location: $imc" );
}
// If the form fields are empty, redirect to the error page.
elseif (empty($email_address) || empty($nome) || empty($whats)) {
header( "Location: $error_page" );
}
// If email injection is detected, redirect to the error page.
elseif ( isInjected($email_address) ) {
header( "Location: $error_page" );
}
// If we passed all previous tests, send the email then redirect to the thank you page.
else {
mail( "$webmaster_email", "Calculo de IMC",
$nome, "From: $email_address" );
header( "Location: $calculadora_imc" );
}
?>Você criou um campo com o atributo name="whats" dentro do formulário?
Como está o código do formulário?
Sim eu criei, segue os campos:
<form action="send_mail.php" method="post">
<table bgcolor="#39ADBD" align="center">
<tr>
<td align="center"><font color="#FFFFFF">Nome</font>:</td>
<td align="center">
<input type="text" name="comments" value="" maxlength="100" />
</td>
</tr>
<tr>
<td align="center"><font color="#FFFFFF">Email</font>:</td>
<td align="center">
<input type="text" name="email_address" value="" maxlength="100" />
</td>
</tr>
<tr>
<td align="center"><font color="#FFFFFF">Whats</font>:</td>
<td align="center">
<input type="text" name="whats" value="" maxlength="100" />
</td>
</tr>
<tr><td> </td>
<td align="center">
<input type="submit" value="Calcular IMC" />
</td>
</tr>
</table>
</form>aonde esta comments (name="comments") na verdade é nome, eu já arrumei, mais o form não coleta os dados do campo whats:
O código do formulário parece correto.
Olhando novamente o código que envia o e-mail... você está criando mas não está usando a variável $whats. O que você quer fazer com ela? Se quer enviá-la por e-mail, então adicione-a na função que envia a mensagem:
mail( "$webmaster_email", "Calculo de IMC",
"Nome: $nome, Whats: $whats", "From: $email_address" );
Meu amigo, deu certo!
Muiiito obrigado!!!!!
Beleeeza!!
Bom dia!
Alguém sabe como validar o forme mencionado neste código PHP?
Eu já tentei e não consegui,ainda estou aprendendo a programar....
<?php
/*
This first bit sets the email address that you want the form to be submitted to.
You will need to change this value to a valid email address that you can access.
*/
$webmaster_email = "dr.araraquara@dremagrece.com.br";
/*
This bit sets the URLs of the supporting pages.
If you change the names of any of the pages, you will need to change the values here.
*/
$imc = "imc.html";
$error_page = "error_message.html";/*
This next bit loads the form field data into variables.
If you add a form field, you will need to add it here.
*/
$email_address = $_REQUEST['email_address'] ;
$nome = $_REQUEST['nome'] ;
$whats = $_REQUEST['whats'] ;
$peso = $_REQUEST['peso'] ;
$altura = $_REQUEST['altura'] ;
/*
The following function checks for email injection.
Specifically, it checks for carriage returns - typically used by spammers to inject a CC list.
*/
function isInjected($str) {
$injections = array('(\n+)',
'(\r+)',
'(\t+)',
'(%0A+)',
'(%0D+)',
'(%08+)',
'(%09+)'
);
$inject = join('|', $injections);
$inject = "/$inject/i";
if(preg_match($inject,$str)) {
return true;
}
else {
return false;
}
}
// If the user tries to access this script directly, redirect them to the feedback form,
if (!isset($_REQUEST['email_address'])) {
header( "Location: $feedback_page" );
}
// If the form fields are empty, redirect to the error page.
elseif (empty($email_address) || empty($nome)) {
header( "Location: $error_page" );
}
// If email injection is detected, redirect to the error page.
elseif ( isInjected($email_address) ) {
header( "Location: $error_page" );
}
// If we passed all previous tests, send the email then redirect to the thank you page.
else {
mail( "$webmaster_email", "Calculo de IMC",
"Nome: $nome, Peso: $peso, altura: $altura, Whats: $whats", "From: $email_address" );
header( "Location: $calculadora_imc" );
}
?>
Se alguém puder ajudar, agradeço muito...