hi
das HTML file:
<html>
<head>
<title>Formulareingaben überprüfen</title>
<script type="text/javascript">
function chkFormular()
{
inhalt="blabla";
document.Formular.SaveInhalt.value=inhalt;
}
</script>
</head>
<body bgcolor="#EEEEEE" text="#000000">
<h1>Formular</h1>
<form name="Formular" action="save.php" method="get" onSubmit="chkFormular()">
<pre>
Name:<input type="text" size="40" name="SaveInhalt">
Wohnort:<input type="text" size="40" name="Ort">
Formular:<input type="submit" value="Absenden"><input type="reset" value="Abbrechen">
Zum Absenden muss eine Internetverbindung bestehen!
</pre></form></body></html>
Das PHP File:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>Untitled</title>
</head>
<body>
<?php
echo "$SaveInhalt <br/>
$Ort";
?>
</body>
</html>
Gruss Christoph