We have the form of sending data to a file
<input name="name" > <textarea name="info"></textarea> <button name="read">ΠΎΡΠΏΡΠ°Π²ΠΈΡΡ</button>
And its handler:
<?php if(isset($_POST['read'])) { $info = $_POST['info']; $f = fopen('send.txt','a+'); fputs($f,$info); fclose($f); ?>
it works like this, but how do you pass the second name parameter to $ info?
and what to do if you need to add another $_POST parameters?