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:
VB Code:
  1. Private Sub mnuToolsMenuCheckForNewVersion_Click()
  2.     Dim strAppVersion           As String
  3.    
  4.     strAppVersion = App.Major & "." & App.Minor & "." & App.Revision
  5.    
  6.     ShellExecute Me.hWnd, "Open", "http://www.brailleschool.com/CheckUpgrade.php?Version=" & strAppVersion, 0, 0, 3
  7. End Sub
When the CheckUpgrade.php page comes up, how would I insert their installed app version into the php page?

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.