... <form action="post" ........> ... <input type="submit" ... name="B1" ... /> <textarea name="t" ...></textarea> ... </form> ...
<?php if( isset($_POST['B1']) ) { echo $_POST['t']; } else { echo "form"; } ?>