Huhu ich hab ma angefangen ein contact script zu schreiben..
index.html:
in meinem Counterscript hab ich ne if bedingung gemacht, dass alle 3 felder gefüllt sein müssen, bevor es abgeschickt wird, wenn ich den html code direkt in das script einfüge funktioniert es acuh super, aber sobald ich es eineln mache so wie hier in ne index.html sag er, dass ich nicht alle felder ausgefüllt habe..
Hier noch die if bedingung:
Danke jetz schon für eure hilfe...
index.html:
PHP-Code:
<html>
<head>
<title>deeg.at ..::.. Proffessional Webcoding ..::.. Contact</title>
</head>
<body>
<form action="contact.php" method="post">
<font face="arial" size="1">
Name: <input type="text" name="name"><br>
Email: <input type="text" name="email"><br>
Betreff: <input type="text" name="betreff"><br><br>
Comment:<br>
<textarea style="width: 50%" rows="10" name="comment"></textarea><br>
<input type="submit" value="Submit">
</font>
</body>
</html>
Hier noch die if bedingung:
PHP-Code:
$len_name = strlen($name);
$len_email = strlen($email);
$len_betreff = strlen($betreff);
$len_comment = strlen($comment);
if ($len_name > 0 && $len_email > 0 && $len_betreff > 0 && $len_comment > 0)
{
Kommentar