Ich habe diese php Datei mit dem Inhalt geprüft. Dabei kommt nur der Text zu sehen:
phpinfo();Wenn ich aber <?php phpinfo(); ?> als Inhalt habe, dann kommt folgender Text:
Warning: phpinfo() has been disabled for security reasons in /usr/local/disco3_alicede/el/ls/xxxx@alice.de/WA/info.php on line 1Bei unzähligen Dateien aus dem Netz kommt nie eine Fehlermeldung. Es heißt sogar immer Nachricht gesendet, egal ob asp oder php. Habe html oder nur flash mit php oder asp versucht, es geht aber nicht.
Ein php-Beispiel mit einer html und Flashdatei:
<?php
/* ---------------------------
php and flash contact form.
by
http://www.MacromediaHelp.com---------------------------
Note: most servers require that one of the emails (sender or receiver) to be an email hosted by same server,
so make sure your email (on last line of this file) is one hosted on same server.
--------------------------- */
// read the variables form the string, (this is not needed with some servers).
$subject = $_REQUEST["subject"];
$message = $_REQUEST["message"];
$sender = $_REQUEST["sender"];
// include sender IP in the message.
$full_message = $_SERVER['REMOTE_ADDR'] . "\n\n" . $message;
$message= $full_message;
// remove the backslashes that normally appears when entering " or '
$message = stripslashes($message);
$subject = stripslashes($subject);
$sender = stripslashes($sender);
// add a prefix in the subject line so that you know the email was sent by online form
$subject = "Contact form ". $subject;
// send the email, make sure you replace
email@yourserver.com with your email address
if(isset($message) and isset($subject) and isset($sender)){
mail("email@yourserver.com", $subject, $message, "From: $sender");
}
?>