Guest_imported
New member
- Jan 1, 1970
- 0
if i want to save a txt file to the server by using php i normally write:
if ($file=fopen("usernumber.txt", "w"
) {
fwrite ($file, "text=$x"
;
the file usernumber.txt is written
but i want this file to be written in a folder called users,
what should i write then /users/usernumber.txt ???
Thx
if ($file=fopen("usernumber.txt", "w"
fwrite ($file, "text=$x"
the file usernumber.txt is written
but i want this file to be written in a folder called users,
what should i write then /users/usernumber.txt ???
Thx