Hi all
I'm writing a web app that will take a number of product codes from the url, e.g.
page.php?products=A34&BB8&NG0&TR8
That's how I'd like to display the URL. Not too complex! However it would seem the only feasible way to send these things as an array is to construct the array on-the-fly, e.g.
page.php?products[]=A34&products[]=BB8&products[]=NG0&products[]=TR8
It has to be a typeable 'query url', and has to be nicer to look at than the above (client restrictions - you understand!) Can any PHP heroes help me out?
Thanks in advance
webClark