Welcome our webmaster and SEO forum
Please enjoy the forum, contribute what you can, and wind up the Moderators!
Results 1 to 3 of 3

Thread: Using URL request for method="POST"

  1. #1
    vit
    vit is offline Junior Member
    Join Date
    Mar 2009
    Posts
    21

    Default Using URL request for method="POST"

    Dear web programmers,

    I experimented and it works. However I would like to know if it is legitimate to do the following.
    I have a form with method="POST", but I know the url structure for the request if I replace POST with GET. Is it legitimate to keep using this URLs for queries when I have POST?

  2. #2
    surreypcsupport's Avatar
    surreypcsupport is offline Senior Member
    Join Date
    Nov 2008
    Location
    surrey
    Posts
    565

    Default

    You should only use POST if you need to hide the information from the user. Otherwise use GET. When you use GET the params are passed in the URL and so no server side memory is used. When you use POST those params are stored in the web server memory and this can cause load problems if you experience high vistor numbers.

  3. #3
    RussellReal is offline Junior Member
    Join Date
    Dec 2009
    Posts
    2

    Default

    uhm.. sorry but I read this and found it extremely misleading.. POST and GET are rendered the same way, they're both held in memory on the SERVER side.. you THINK your server can read the URL from the server side.. on your client's browser? impossible even in the 21st century, well not IMPOSSIBLE.. but you think about it they both get filled into variables.

    using post is JUST FINE, however, using POST will cut out alot of keyword you could potentially get.. because POST form fields aren't indexed but GET vars in a URL IS indexed also.. you should use POST when you're posting a large amount of data, as a url is limited to whatever the browser decides is a decent limit, so if its a long long long POST you should use POST if small vars like PAGE makes it easier for your users to link to friends and spyders to index you..

    go with post whenever you want is what I'm saying use get when you WANT the data to get noticed, I like to use POST when my content is framed that way the url is never changed

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Bookmarks

Posting Permissions

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

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124