We are using WAMP on our Dedicated Windows Server and basically, we have WAMP installed in the regular location "C:\wamp\www". We have a file .json file that we want to access and decode, but I don't know how to access it from the current location?
We have tried this:
$variable = exec("cat C:\\Users\\Administrator\\Desktop\\folder here\\players.json");
echo $variable;
Anyone have any ideas?


file_get_contents()would suffice surely? No need to execute a shell command – Crisp Jan 13 at 17:55