Hilfe,
mich versteht keiner....
die Seite läuft doch - nur das versenden der eingelesenen Daten klappt nicht.
Ich bräuchte "nur" Hilfe, wie und wo ich welchen Script setzen soll
<html>
<head>
<title>Bestellung</title>
<style type="text/css"> td { background-color:#D9D9CE; } </style>
</head>
<body>
<div align="center"><B><FONT COLOR="#D9D9CE">Bestellformular </FONT><p> </B> </div>
<title>Wertübergabe - Werte empfangen</title>
<script language="JavaScript">
function WerteURLAus()
{
var URLInhalt = location.href;
var ArrayVariable = URLInhalt.split("#");
document.Formular2.Ausgabe1.value=unescape(ArrayVariable[1]);
document.Formular2.Ausgabe2.value=unescape(ArrayVariable[2]);
}
</script>
<form action="http://www.meineurl.de/system-cgi/formmail.pl" method="POST">
<input type=hidden name="recipient" value="formulartest@meineurl.de">
</head>
<body>
<body onLoad="WerteURLAus();return true;">
<form name="Formular2">
Wert 1 empfangen: <input type="Text" name="Ausgabe1"> <br>
Wert 2 empfangen: <input type="Text" name="Ausgabe2">
<div align="center"><colspan="2" align="center"><input type="submit" value="Absenden"></div></div>
</form>
</body>
</html>
MfG
Joerg