HTTP POST and GET

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Joe

    HTTP POST and GET

    Can you and if you can, how do you access these variables?
    Im running on a apache-server/win2000

    I guess this is a typical newbee question, but I am a newbee so hopefully
    you will bare with me..

    Joe


  • Janwillem Borleffs

    #2
    Re: HTTP POST and GET


    "Joe" <amplifymysoul@ hotmail.com> schreef in bericht
    news:3f032da4$0 $76083$edfadb0f @dread11.news.t ele.dk...[color=blue]
    > Can you and if you can, how do you access these variables?
    > Im running on a apache-server/win2000
    >
    > I guess this is a typical newbee question, but I am a newbee so hopefully
    > you will bare with me..
    >[/color]

    Only parameters passed by the GET method is applicable, because when you try
    to post to an HTML file with normal permissions, you will get a 'Method not
    allowed' error.

    These parameters passed by the get method are accessible through the search
    property of the location object (location.searc h).


    JW



    Comment

    • Richard Hockey

      #3
      Re: HTTP POST and GET

      You will very likely need to use scripts/executables on the server to access
      POST variables:

      php - $_POST["username"]

      ASP (VBscript) - Request.Form("u sername")

      Coldfusion - #Form.username#

      The best choice of scripting engine for Apache is PHP, although you can run
      both Coldfusion and ASP on Apache servers as well .(Check out the ChiliSoft
      ASP module for Apache, ASP::PERL and OpenSA).

      php - http://www.php.net

      OpenSA - http://www.opensa.org

      "Joe" <amplifymysoul@ hotmail.com> wrote in message
      news:3f032da4$0 $76083$edfadb0f @dread11.news.t ele.dk...[color=blue]
      > Can you and if you can, how do you access these variables?
      > Im running on a apache-server/win2000
      >
      > I guess this is a typical newbee question, but I am a newbee so hopefully
      > you will bare with me..
      >
      > Joe
      >
      >[/color]


      Comment

      Working...