所以我使用了代码:
<form id="content" name="content" action="profile.php" method="post">
<p>Title:</p>
<input type="text" name="title">
<br />
<p>Scare:</p>
<textarea type="text" name="outputtext" style="width: 99%;" id="outputtext" placeholder="Scare Here..." cols="25" rows="10" type="text"></textarea>
<br>
<input type="submit">
<input type="reset">
</form>
为了实际发布到profile.php页面,以及我放置的个人资料页面,
<?
$file_contents = stripslashes($_POST['outputtext']);
?>
<textarea readonly rows="7 cols="9">
<?PHP print_r($file_contents); ?>
</textarea>
但是如何将帖子页面中输入的信息发送到PhpMyAdmin上的数据库?我怎么能让它留在那里,以便即使你navegate到一个新的页面,比如打一个帖子,你所做的帖子会留在你的个人资料中?