Hi,
I'm attempting to create a search page, is not really a search but the search page does what I need.
Unfortunately, I've struck a problem with my checkboxes.
The search page is nesting in an asset listing - that is listing all assets that are children of a selected asset, with a default bodycopy
<label><input type="checkbox" name="subject" value="%asset_short_name%">%asset_name%</label>
The idea is that someone can select one or more of the subjects listed - and then the search page returns the asset contents for each of the subjects selected.
What I've found is that when more than one is selected only the last one is returned.
Presumably it is because the querystring parameter is http://mysite.com?subject=apple&subject=orange
when sqiz wants subject=apple,orange - but checkboxes don't seem to work that way.
Any ideas how I can make this work?
Thanks Georgina.