I have a form
<form action="" method="post" class="basic-grey">
<h1>Bible Form
<span>Please fill all the texts in the fields.</span>
</h1>
<label>
<span>Your Nickname* :</span>
<input id="name" type="text" name="name" placeholder="insert your nickname" />
</label>
<label>
<span>Your Email* :</span>
<input id="email" type="email" name="email" placeholder="Valid Email Address" />
</label>
<label>
<span>Message* :</span>
<textarea id="message" name="message" placeholder="Insert the text u desire"></textarea>
</label>
<label>
<span>Code* :</span>
<input id="code" type="email" name="email" placeholder="The Code That we sent to your email" />
</label>
<label>
<span> </span>
<input type="button" class="button" value="Send" />
</label>
My goal is that in that form, when filling in all the data. (We can skip the last box of the code, that stops later). And when giving the user to submit, upload what is in MESSAGE to a file located on the server (I guess that goes by php and mysql). And to be able, that if 10 users upload 10 texts, that all these are in a single file consecutively (one below the other).