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 = "my@email.com"; 
$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
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.