Hi Tom,
sollte so auf jedenfall funktionieren :-)
<html>
<head>
</head>
<body>
<form action="test.php" method="POST">
<input type="text" name="test">
<input type="submit" value="senden">
</form>
</body>
</html>
<?php
$test = $_POST['test'];
echo $test;
?>
Gruß Patti