My application is almost done. This is what I am looking to do:
I have an option in Menu Editor which will bring up a page in the format of:
http://www.mysite.com/CheckUpgrade.php?Version= App.Major & "." & App.Minor & "." & App.Revision
This is the VB code I am using:
When the CheckUpgrade.php page comes up, how would I insert their installed app version into the php page?VB Code:
Private Sub mnuToolsMenuCheckForNewVersion_Click() Dim strAppVersion As String strAppVersion = App.Major & "." & App.Minor & "." & App.Revision ShellExecute Me.hWnd, "Open", "http://www.brailleschool.com/CheckUpgrade.php?Version=" & strAppVersion, 0, 0, 3 End Sub
I need to show a page (CheckUpgrade.php) that will show two pieces of information.
1. Their app version number
2. Current app version number
How would you go about doing this? I am going to also be using a MySQL backend for the information. MySQL backend also has registration information for all registered users. Please advise if at all possible. Thanks in advance.




Reply With Quote