Get und Echo-Eingaben von Textarea wiederholt [geschlossen]

Ich habe ein einfaches HTML-Formular wie dieses:

    <form action="index.php" method="post">
    <textarea id="question" name="question"></textarea>
    <input type="submit"/>
    </form>

Und die Prozedur, die ich gerne hätte, ist hier beschrieben:

Geben Sie etwas in das Textfeld ein und klicken Sie auf "Senden". Das Ergebnis wird angezeigt:

[... the only text area got blank and be ready for new input ...]

Question 1: Something typed firstly

Tippen Sie etwas anderes in das obige Textfeld und senden Sie es. Das Ergebnis wird angezeigt:

[... the only text area got blank and be ready for new input ...]

Question 1: Something typed firstly
Question 2: Something typed secondly

Und so weiter..

[... the only text area got blank and be ready for new input ...]

Question 1: Something typed firstly
Question 2: Something typed secondly
...
Question n: Something typed at the n time

Hat jemand eine Idee oder kann er mir einen Hinweis geben, wie man dies nur mit HTML und PHP macht?

Vielen Dank

Antworten auf die Frage(4)

Ihre Antwort auf die Frage