I am creating a journal website, i am going to have a text box in it. I need to store the text entered in the website by the user to my file. I have an online free server.please help me to store it in a simple way
You can save the input to:
a) file (append new data)
file_put_contents($file, $person, FILE_APPEND | LOCK_EX);
b) to DB