
Klappt wunderbar. Ganz herzlichen Dank für die superschnelle Lösung meines Problems.
Viele Grüße,
Dieter
:sonne:
Code: Alles auswählen
if ( (isset($EMail)) && ($Action=="confirmation") ) {
Code: Alles auswählen
if ( ($Action == "subscribe") || ($Action == "unsubscribe") ) {
reset ($_GET);
while (list ($key, $val) = each ($_GET)) {
$val = utf8_decode($val);
if($val != "")
$_GET[$key] = $val;
}
reset ($_POST);
while (list ($key, $val) = each ($_POST)) {
$val = utf8_decode($val);
if($val != "")
$_POST[$key] = $val;
}
}
Code: Alles auswählen
<form method="post" action="newsletter.php" accept-charset="iso-8859-1">