I'm wondering if there is a cleaner way to pass multiple variables in a GET request than the following:
http://www.mysite.com/somepage?tags[]=one&tags[]=two&tags[]=three
I had thought about the following:
http://www.mysite.com/somepage?tags=one,two,three
Then using explode() to separate them.
Wondered if anyone had seen or used a better solution though?
http:/who.cares/page.php?tags=lorem+ipsum+sit+dolor+amet.. or with mode rewrite:http://who.cares/tags/lorem+ipsum+sit+dolor+amet. Withurldecode()and explode on' '.