Obter e eco de entradas da área de texto repetidamente [fechado]

Eu tenho um formulário HTML simples como este:

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

E o procedimento que eu gostaria que fosse é algo como descrito aqui:

Digite algo na área de texto e clique em enviar, resultado exibido:

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

Question 1: Something typed firstly

Digite outra coisa na área de texto acima e envie o resultado exibido:

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

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

E assim por diante...

[... 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

Alguém tem uma idéia ou pode me dar uma dica de como fazer isso usando apenas HTML e PHP?

Muito obrigado!

questionAnswers(2)

yourAnswerToTheQuestion