I have a file that I'd like another script to access using file_get_contents
The file I'd like it to access is in the directory above it, so I'm using file_get_contents('../file.php?this=that')
However, it's returning No such file or directory
and I can't understand why. The file is there.
I'm assuming it has something to do with it being a local file rather than a remote. Any ideas or workarounds?