increasing GET data in url
how can i increase the data that 开发者_Go百科the GEt(not POST) method can send?
You have no control over the limitations of the GET request.
There are limitations in various browsers (some as low as 255 characters) and also limitations imposed by a server, but normally more than 255 characters.
So you will need to think of another way of indexing your content that doesn't require such massive URLs. 255 characters is quite a lot for a normal GET request - so you are probably trying to do something other than just serve a page.
Please give more information about why you need longer URLs and we may be able to offer a better alternative.
Have a look at what-is-the-maximum-length-of-an-url on SO.
registration-sucsess.php?type=Full Payment&product_id=aa
here we are passing two variables type and product_id
精彩评论