Programmers, Executable file parameters?

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • chodadog
    Confirmed User
    • Apr 2002
    • 9736

    #1

    Programmers, Executable file parameters?

    Is it possible to have a file install different information depending on a paramater passed via internet explorer?

    For example,
    mydomain.com/application.exe?id=john
    And that would have different values for certain things instead of..
    mydomain.com/application.exe?id=mark

    It'd be fantastic if this was possible, let me know.

    Cheers
    26 + 6 = 1
  • mike503
    Confirmed User
    • May 2002
    • 2243

    #2
    those are standard GET requests in the query string. the application can handle those. unless you're downloading an .exe, and you want a different .exe to be downloaded, then you should put a script in front of it to do the redirection..
    php/mysql guru. hosting, coding, all that jazz.

    Comment

    • chodadog
      Confirmed User
      • Apr 2002
      • 9736

      #3
      Thanks man, i'll have this guy look into it.
      26 + 6 = 1

      Comment

      • spanky
        Confirmed User
        • Apr 2002
        • 231

        #4
        unless I misunderstand, no it is not possible.

        are you saying that you want a client to download an executable from a web server with a get vars tagged on to the end of the URI like host.domain.tld/app.exe?key=val and then when that program is run on the client computer it will know what those get vars in the request were? If that's what you are asking then no.

        There are solutions to achieve the same end, but not by just tagging the values onto a uri that points to the exe.

        cheers

        Comment

        Working...