I am trying to make a very basic CMS because I want to try to get better at PHP so anyway. How would I make it so what gets typed inthe box dosent jsut apear for year but it edits the page so it stays there.
<html>
<head>
<title>Forum Page Test</title>
</head>
<body>
Current Comments:<br>
<?php echo $_POST["name"]; ?>
<p>
<form action="test.php" method="POST">
Comment: <input type="text" name="name" />
<input type="submit" />
</form></body>
</html>
Take like a tag board script for instnace. Kinda something like the posting thing.
I probably dont even have the right code :bemused: