$message = 'This message was sent via the form on domain:' . "\n";
$message .= '---------------------------------------------------' . "\n";
// loop through posted values and add them to the message:
$message.="1. Pakkealternativ: ".$POST['pakkealternativ']."\n";
$message.="2. Fornavn: ".$POST['Fornavn']."\n";
$message.="3. Etternavn: ".$POST['Etternavn']."\n";
$message.="4. Person Nummer: ".$POST['Personnr']."\n";
$message.="5. Adresse: ".$POST['adresse']."\n";
$message.="6. postnummer: ".$POST['postnummer']."\n";
$message.="7. poststed: ". $POST['poststed']."\n";
$message.="8. telefon nummer: ". $POST['telefonnummer']."\n";
$message.="9. email: ". $POST['email']."\n";
$message.="10. kode: ". $POST['kode']."\n";
so i used that part on my script to get the info i wanted and the thing is i do get it using opera but when i use submit with explorer the fields are empty.....
anyone know what might cause that ?