Freebeeezz Posted April 7, 2005 Share Posted April 7, 2005 Hi, I have a little problem, I have a mailform with a List/Menu (named informatie) witch allows Multiple Selections. When I test it and select some from the list only the last selection is shown in the e-mail. The form is Posted to a PHP mailscript, listed here below. <?php @extract($_POST); $email = stripslashes ($email); $naam = stripslashes($naam); $adres = stripslashes($adres); $postcode = stripslashes($postcode); $woonplaats = stripslashes($woonplaats); $info = stripslashes($info); $prijsindicat = stripslashes($prijsindicat); $telnr = stripslashes($telnr); $informatie = stripslashes($informatie); $opmerkingen = stripslashes($opmerkingen); $body = "$naam heeft zojuist het formulier van de website ingevuld.\n"; $body .= "\nAdres: $adres"; $body .= "\nPostcode: $postcode"; $body .= "\nWoonplaats: $woonplaats"; $body .= "\nInformatie sturen?: $info"; $body .= "\nPrijsindicatie sturen?: $prijsindicat"; $body .= "\nTelefoonnummer: $telnr\n"; $body .= "Informatie over: $informatie"; $body .= "\nOpmerkingen: $opmerkingen"; mail('[email protected]',$subject,$body,"From: $naam <$email>"); header("location:email.htm"); ?> Who can give me some help on this one? Thanks..... Freebeeezz..... Link to comment https://forums.phpfreaks.com/topic/2243-mail-values-from-list-with-multiple-selections/ Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.