I have a file on my server called version.txt
It simply contains the current version number of my application.
I would like to retrieve the version number when my application runs to check the version of whats running to the version that currently available.
Its located at http://mydomain.com/files/version.txt
How would i retrieve the value of version.txt from my php application?
Is there a way i could do this? Keep in mind the application is not running on the same server as where version.txt is located but it should be able to get the value via a url somehow.
Thanks