Hi,
How can I read a file content without uploading it to the server? I know that we use $handler = fopen('regular.csv', 'r');
to read an existing file on server but what if doesn't exist.
Obviously $_FILES
is used to move file to server first but I don't have any folder writable and won't be given one. That's why I need to do this way.
Thanks