0 votes
in PHP by
How to write in a file in PHP?

1 Answer

0 votes
by
PHP fwrite() and fputs() functions are used to write data into file. To write data into a file, you need to use w, r+, w+, x, x+, c or c+ mode.
...