Page 1 of 1

uploading the contents of a text area to the server

Posted: Mon Apr 12, 2021 3:44 pm
by frafi
Could someone please give me an example how to upload the contents of an text area into a text file on the server.
The combination JavaScript at the client side and PHP on the server side is a possibility.
Is there is a straight forward and ease way here?

Re: uploading the contents of a text area to the server

Posted: Mon Apr 12, 2021 5:19 pm
by Pablo
You can use the built-in form script to store data in a CSV file.

Re: uploading the contents of a text area to the server

Posted: Mon Apr 12, 2021 8:28 pm
by frafi
Thanks for the tip, this was exactly what i want. The form contents are now at the server for further processing.
But i realized that the readonly editbox is not coming through.
Why? I need and want all texts for my project. How can i bring this strings also through?

Re: uploading the contents of a text area to the server

Posted: Tue Apr 13, 2021 6:10 am
by Pablo
Maybe the input field is not part of the form?
It is difficult to help you without seeing what you have done.