1
Hallo,
ich habe ein einfaches E-Mail Script.
Jetzt will ich dieses Formular mit einer Bildschirmtastur füllen.
Folgendes habe ich gefunden:
Wie übernimmt man die Daten in die Felder?
Und wie schreibt man ein LEERZEICHEN?
Gruss
Uwe
ich habe ein einfaches E-Mail Script.
<html>
<head><title>Mail from test</title>
<meta http-equiv=Content-Type content=text/html; charset=iso-8859-7>
</head>
<body bgcolor="#FFFFFF" text="#000000" cellspacing="0" cellpadding="0">
<form name="fmmail" method="POST" action="mailform.php">
T i t e l: <input type="text" name="onoma" size="35" maxlength="60"><br>
T e x t : <textarea name="sxolia" rows="5" cols="50"></textarea><br>
E-Mail: <input type="text" name="usermail" size="35" maxlength="100"><br>
<input type="submit" name="submit" Value="Senden">
</form>
<?
if (isset ($submit)) {
if ($onoma <> "" and $sxolia <> "" and $usermail <> "") {
$message = ("<html><head><title>Mail vom test.de</title>" .
"\n<meta http-equiv=Content-Type content=text/html; charset=iso-8859-7>" .
"\n</head>" .
"\n<body bgcolor=\"FFFFFF\" text=\"000000\">" .
"\n<b>Titel</b> " . $_POST['onoma'] . "<br>" .
"\n<b>E-mail Adresse:</b> " . $_POST['usermail'] . "<br><br>" .
"\n<b>Folgender Text:</b> " . $_POST['sxolia'] . "<br>" .
"\n</body></html>");
mail ("test@mail.de", "Infomail ", $message, "From: $usermail \nContent-Type: text/html");
echo "<br>Das Mail wird verschickt!";
} else {
$msg = "Hinweis<br><br><b>Hinweis</b>";
echo "$msg";
}
unset ($_POST['submit']);
}
?>
</body>
</html>
Jetzt will ich dieses Formular mit einer Bildschirmtastur füllen.
Folgendes habe ich gefunden:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<title>New Document</title>
<meta http-equiv="content-type" content="text/html; charset=iso-8859-1" />
<style type="text/css">
<!--
*{margin:0;padding:0;}
body{margin:0 auto; text-align:center;}
.mantel{width:80%;margin:5em auto;text-align:center;}
.num{float:left;}
.alpha{float:left;}
input[type=submit]{
float:left;
width:4em;
height:4em;
border:4px outset silver;
background-color:silver;
}
input[type=submit]:focus{
border:4px inset silver;
}
br{
clear:both;
}
//-->
</style>
</head>
<body>
<div class='mantel'>
<?
$num=array("^",1,2,3,4,5,6,7,8,9,0,"ß");
$alpha=array('q','w','e','r','t','z','u','i','o','p','ü','+','a','s','d','f','g','h','j','k','l','m','ö','#');
echo "
<form method='post' action='".$_SERVER['php-self']."'/>
<div class='num'>";
foreach($num as $taste)
echo "
<input type='submit' name='taste[]' value='".$taste."' />
";
echo "
</div>
<div class='alpha'>";
$count=0;
foreach($alpha as $taste){
echo "
<input type='submit' name='taste[]' value='".$taste."' />
";
$count++;
if($count==12){
$count=0;
echo "
";
}
}
echo "</div>";
?>
</div>
</body>
</html>
Wie übernimmt man die Daten in die Felder?
Und wie schreibt man ein LEERZEICHEN?
Gruss
Uwe