Ray: 1und1 server gegen Alice / PHP globale variablen?

Beitrag lesen

Hallo,
ich benutze diesen PHP formmailer über ein Flash-Formular. Er läuft auf meinem 1und1-Server tadellos - doch leider nicht auf einem Alice-Server. (wo offensichtlich eine andere PHP Version liegt...)
Habe von PHP kaum Ahnung, es wurde mir gesagt das es an "globalen variablen" liegt. Kann mir jemand sagen wie ich das Script verändern muss damit es auch auf dem Alice-Server läuft? Vielen Dank!

.....................................

<?

/******************************************************
**
**   PHP Mailer 2.0
**
**   This script is easy to configure. Just change the variables below to
**    suit your environment and PHP does the rest!
**
**   http://www.bigjolt.com
**
*******************************************************/

/*******************************************************

Enter your site details below!

*******************************************************/

// Enter your contact email address here
$adminaddress = "kontakt@firma.de";

// Enter the address of your website here include http://www.
$siteaddress ="http://www.firma.de";

// Enter your company name or site name here
$sitename = "Firma";

/*******************************************************

No need to change anything below ...

*******************************************************/

// Gets the date and time from your server
$date = date("m/d/Y H:i:s");

// Gets the IP Address
if ($REMOTE_ADDR == "") $ip = "no ip";
else $ip = getHostByAddr($REMOTE_ADDR);

//Process the form data!
// and send the information collected in the Flash form to Your nominated email address
if ($action != ""):
mail("$adminaddress","Neue Kundendaten",
"Eine neuer Besucher hat auf $sitename folgende Angaben gemacht\n
Vorname: $fname
Nachname: $lname
Email: $email
Unternehmen: $cname
Telephone: $telno\n
Terminvorschläge und Anmerkungen:
------------------------------
$comments

Logged Info :
------------------------------
Using: $HTTP_USER_AGENT
Hostname: $ip
IP address: $REMOTE_ADDR
Date/Time:  $date","FROM:$adminaddress");

//This sends a confirmation to your visitor
mail("$email","$sitename",
"Guten Tag $fname $lname,\n
Vielen Dank für Ihre Kontaktaufnahme.
Wir werden uns umgehend bei Ihnen melden.
Ihre $sitename\n
$siteaddress","FROM:$adminaddress");

//Confirmation is sent back to the Flash form that the process is complete
$sendresult = "Vielen Dank für Ihre Angaben. In wenigen Minuten erhalten Sie eine Bestätigungsmail.";
$send_answer = "answer=";
$send_answer .= rawurlencode($sendresult);
echo "$send_answer";

endif;

?>