I am not a code guy so I'm sure this is simple. I've been searching for a solution on the forums for two days now and haven't found one. I have a form to query a database and show results. Everything works except on my multi-select and checkbox groups the results only display the last option of the array that I clicked. Thanks in advance for any assistance.
I'm using Joomla 2.5 and CF V4.
My where statement in multi record loader
my debugger shows
I'm using Joomla 2.5 and CF V4.
My where statement in multi record loader
`Bedrooms` = '<?php echo $form->data['bedselect']; ?>' AND `Bathrooms` ='<?php echo $form->data['bathselect']; ?>'
my debugger shows
SELECT `sqft`, `bedrooms`, `bathrooms` FROM `fpdatabase` AS `Fpdatabase` WHERE `Bedrooms` = '2' AND `Bathrooms` ='1,2'