A Flash Developer Resource Site

Results 1 to 2 of 2

Thread: Sending certain variables to a CGI....

Hybrid View

  1. #1
    Junior Member
    Join Date
    Apr 2000
    Posts
    28

    Question

    Is it possible to only send certain variables through CGI? I have quite a few different variables, but I only need to send a few through CGI. If it is possible, how do I do it?

    Thanks,
    Jaime

  2. #2

    Smile

    Depends on what you want to do:
    GET request - just tag your variables on the end of the URL in the form "http://www.mysite.com/cgi-bin/script.cgi?var1=" & var1 & "&var2=" & var2
    Unfortunately you are limited to 255 chars, and the request can be cached by your browser. So if you had .../script.cgi?todo=showmessages&lastseen=10 then no matter how many times you "refreshed" you still get the cached version. You can tag a random or sequential variable to the end to prevent caching but this is a hack.

    POSTing is broken in IE on macs, but is non-caching. It is difficult to specify which vars are sent - it's basically all vars in the current layer IIRC, so you may want to pull variables down from wherever you are keeping them into the layer where you are doing the call from. We use POST at http://www.moonfruit.com - if you need > 255 chars it's all you can do.

    Have fun...

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  




Click Here to Expand Forum to Full Width

HTML5 Development Center