A Flash Developer Resource Site

Results 1 to 4 of 4

Thread: Get and Post?

  1. #1
    JKNIGHT Animations
    Join Date
    Oct 2002
    Posts
    46

    Get and Post?

    Hey guys
    in Flash, and even other script languages, there're the additional parameters GET and POST?

    a) What do the exactly?
    b) What's the difference?
    c) When sould i use it? Examples?

  2. #2
    Member
    Join Date
    Jun 2002
    Posts
    38
    a.) GET -> gets info
    POST -> posts info

    b.) the difference lies in their implentation (sorry, i dob't know the details)

    c.) use GET to retrieve data from remote sources
    example: i don't know
    use POST to append data to remote destinations
    example: u guessed it, i don't know how

    did i help much?

  3. #3
    Member
    Join Date
    Mar 2001
    Posts
    33
    In asp and php pages, the get and the post parameters dont do that actually.

    Get allows you to send some data via the address. Ex: index.asp?bla=true.

    Post, on the other side, allows you to send some invisible data to the user. The address will only be index.asp and the data will be kept in secret. Perfect for passwords, etc.

    For Flash, I dont know much about it...

  4. #4
    Developer
    Join Date
    Sep 2001
    Location
    The Bluegrass State Will Flash For Food ™
    Posts
    3,789
    GET sends info in the address bar (usually for simple form submissions, searches, simple queries); POST sends it in the pages header, invisible to the user (sending passwords, large amounts of data &c). Nothing to do with ASP, PHP or whatever. There is a limit on how much data you can send via a GET request where as POST has no such limit.

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