Hi!
Hab ein Problem mit folgender Seite: klick hier
Wie bekomm ich die Fehlermeldungen weg. Is wahrscheinlich simpel, aber ich komm einfach nicht dahinter. Bin halt ein php-noob.
Hier der Quelltext:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>underdark_design</title>
<link rel="stylesheet" type="text/css" href="css/styles.css" />
</head>
<body>
<div id="head"><p><a href="kontakt.php" title="Kontakt">Kontakt</a> | <a href="impressum.html" title="Impressum">Impressum</a> | <a href="sitemap.html" title="Sitemap">Sitemap</a></p>
<img src="bilder/header.gif" alt="" width="760" height="36" /></div>
<div id="nav">
<div id="sprache">
<a href="#" title="deutsch"><img src="bilder/deu.gif" alt="Sprachumschaltung: Deutsch" /></a>
<a href="#" title="englisch"><img src="bilder/engl.gif" alt="change language: English" /></a> </div>
<ul>
<li><a href="index.html" title="Home">Home</a></li>
<li><a href="timeline.html" title="Timeline" >Timeline</a></li>
<li><a href="webdesign.html" title="Webdesign" >Webdesign</a></li>
<li><a href="rpgs.html" title="RPGs" >RPGs</a></li>
</ul>
<div class="clearer"></div>
</div>
<div id="cont">
<h1>Freu mich über Feedback! </h1>
<p>Einfach Formular ausfüllen und abschicken. </p>
<div class="text">
<form method="post" action="PhpFormMail.php?send=1">
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td>Ihr Name:</td>
<td><input type="text" name="NAME" size="35" value="<?PHP ECHO $_POST[NAME]; ?>" /></td>
</tr>
<tr>
<td>Ihre Email-Adresse:</td>
<td><input type="text" name="EMAIL" size="35" value="<?PHP ECHO $_POST[EMAIL]; ?>" /></td>
</tr>
<tr>
<td>Betreff:</td>
<td><input type="text" name="SUBJECT" size="35" value="<?PHP ECHO $_POST[SUBJECT]; ?>" /></td>
</tr>
<tr>
<td>Kommentar:</td>
<td><textarea name="COMMENT" cols="45" rows="10"><?PHP ECHO $_POST[COMMENT]; ?></textarea></td>
</tr>
<tr>
<td> </td>
<td><input type="submit" name="Send" value="Absenden" /></td>
</tr>
</table>
</form>
</div>
</div>
<div class="clearer"></div>
</body>
</html>
Danke im Vorhinein.