Hey folks,
Once again I have a question about something in web that has nothing to do with Python.
You know how, when you order some product delivered, you get a tracking number for your package? Then you can track the delivery of your package online. You do this on various websites, like
israelpost.co.il if it's in Israel, or other postal service websites in other countries if you ordered something from abroad.
One thing that annoys me though, is that the form to enter a tracking number is often not in GET, but in POST. This means that I can't have a constant URL for the tracking of my packages! For example I wanted to make a memo for myself for a week from now to check the status on the tracking page, and I wanted to include a URL of that tracking page, but I can't give a direct URL to the result, only the URL of the form and a tracking number.
What do you think, is there a good reason to make this form POST and not GET?
Ram.