Jump to content

Form handling


nunu78

Recommended Posts

What's wrong with this coding? I would like the form to work so that the form would not be sent unless all the requested fields were filled.

 

Please help! (And please ignore the funny scandinavian language in between....  :D )

 

    
<?php
$lastname=$_REQUEST['lastname'];
$firstnames=$_REQUEST['firstnames'];
$birthday=$_REQUEST['birthday'];
$streetaddress=$_REQUEST['streetaddress'];
$postalcode=$_REQUEST['postalcode'];
$email=$_REQUEST['email'];
$phone=$_REQUEST['phone'];

$headers = "From: $email"; 
$to = "[email protected]"; 
$subject = 'Haluan liittyä jäseneksi';
$mailcontent = 'sukunimi: '.$lastname. "\n"
			   .'etunimet: '.$firstnames. "\n"
			   .'syntymäaika: '.$birthday. "\n" 
			   .'katuosoite: '.$streetaddress. "\n" 
			   .'postiosoite: '.$postalcode. "\n" 
			   .'sähköposti: '.$email. "\n" 
			   .'puhelinnumero: '.$phone. "\n" ;
			   
$sent = mail($to, $subject, $mailcontent, $headers) ; 

if($sent) 
{print "Liittymislomake on vastaanotettu. Jäsensihteeri on yhteydessä sinuun lähiaikoina."; }
else 
{print "Virhe viestiä lähettäessä. Tarkista täytitkö kaikki kentät."; }
?>

Link to comment
https://forums.phpfreaks.com/topic/42754-form-handling/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.