I have a textbox and a submit button in an html form. I want to make it so that when a user enters text and clicks submit, it saves it to the website, and other people can see what they wrote. right now I have:
Code: Select all
<?PHP $input = $_POST['input']; ?>
1. <?PHP echo $input ?>
That shows up as "1. [whatever the user typed here]" locally, but how can I make it so other people on different computers can see the submitted text?