what is the correct way of accessing a file using fopen, if the fopen command is in a directory called shared shared is in the home directory, along with the files/columns/ directory where the files are stored? is it '../files/column/'?
Yes, but specify a file:
fopen('../files/columns/some_file.txt', 'r');
Diego