I'm currently working on a site that uses server side javascript to send the results of various options using Form Data and arrays as POST - for example:
brand[]=Max+Warehouse+&brand[]=Superstore&timing[]=All day&flavour[]=Orange&flavour[]=Cola&sweeteners[]=Sugar&sweeteners[]=Date&sweeteners[]=none&pageNumber=1&tableLength=25&sortDirection=sortDesc&sortedBy=best_sellers
to a php script then the php will search the database for results that match options checked but I'm not sure how to do this.
I'm pretty new to php/mysql and don't know how to run through what's being sent if more than one value of the same option is sent.
Thanks in advance for any help