Greetings,
I'm looking to have on one of my files a version checker that will check for the lastest version of my script. What is the best way to do this? I know a include can work if some settings in PHP are on, but I'd like it to work with the default settings of PHP.
Thank you for your time.
Mark
If I understand correctly, there's probably no need for an include. Just put the version info in a file (XML, perhaps?) that you can access from the application's "check latest version" function via [man]file_get_contents/man or [man]cURL[/man].
Thank you NogDog!