From: Andreas A. (Thyrell) <a.a...@th...> - 2001-09-04 18:39:03
|
Hi, I thought a bit about how to treat the variables passed in search engine friendly urls. The CGI class does it like this: scriptname/moo.boo/foo.bar (= scriptname?moo=boo&foo=bar) I like that, and I'm going to modify the request class to parse the request uri for such param/value pairs. My intention is to parse the url and provide the var/value pairs in HTTP_GET_VARS. So you can use the common GetVar() method to access them. The CGI class makes them available as class properies what I dislike. In the very nature this are GET vars and they should be provided as GET. Andi |