what im doing is posting the message from the previous page when the save button is clicked, and putting this message in the textbox..

PHP Code:
                if (isset($_POST['Save'])) {
                    
                    $text = $_POST['textarea'];
                    
                    ?> <textarea align="center" name="textarea" cols="70" rows="13">
                        <? echo $text; ?>
                    </textarea>
.. blah blah
but the text appears indented in the textbox, any idea why?