I'm writing a web app in PHP that is basically a template designer. Users enter their measurements, colours, etc. in a form, and on submit they see a preview. All the defined variables show up in the URL (e.g. http://mysite.com/template.php?height=100&width=300&color=blue...)
I have about 100 such variables so needless to say the resulting URL can get pretty messy. Not that there's anything wrong with that, but I'm new to PHP so I was just wondering if there's a better way to do this? Does it slow down the browser unnecessarily to have 100 variables passing through a GET request?