so u guys can help a newbie, heres the data in the files:
test.php:
<form action="action.php" method="POST" target="board">
<div align="center">
<iframe src="board.php" name="board" width="150" height="200" marginwidth="0" marginheight="0"></iframe>
<br>
<input type="text" name="name" value="Your Name"><br>
<input type="text" name="mail" value="Your E-Mail"><br>
<input type="text" name="message" value="Message"><br>
<input type="submit" value="Shout Out!"></div>
</form>
action.php:
<a href="mailto:<?php echo $_POST["mail"]; ?>"><?php echo $_POST["name"]; ?></a>: <?php echo $_POST["message"]; ?>
board.php:
its empty 🙁