I\'m getting the following error when I try to run my PHP script:
failed to open stream: No such file or directory in C:\\wamp\\www\\LOF\\Data.php on
You may try using this
The "./" allows to search url from current directory. You may use
chdir($_SERVER["DOCUMENT_ROOT"]);
to change current working directory to root of your website if path is relative from root directory.