nunu78 Posted March 14, 2007 Share Posted March 14, 2007 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.... ) <?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."; } ?> Quote Link to comment https://forums.phpfreaks.com/topic/42754-form-handling/ Share on other sites More sharing options...
per1os Posted March 14, 2007 Share Posted March 14, 2007 $_REQUEST has been depreciated for some time, I would use $_POST. --FrosT Quote Link to comment https://forums.phpfreaks.com/topic/42754-form-handling/#findComment-207471 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.