0
Write to file.
I have a form with some input fields. how can I save all fields into a file for all input times. for example I enter 3 properties for each order. totally 10 order.
3 ответов
+ 3
Don't be surprised to not get an answer with the expected language, when you don't precise which on it is :P
+ 2
$file = fopen(name.txt, "w");
fwrite($file, $somestring);
fclose($file);
0
in Java?!