所以我使用了代码:
<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 上的数据库?我怎样才能让它留在那里,这样即使你导航到一个新页面,比如要发另一个帖子,你发的帖子也会留在你的个人资料上?