First: What a great combination of components are ChronoForms and ChronoConnectivity. With a little knowledge of tables, Forms and SQL I have been able to fill a database table and to retrieve data from the database.
My question:
I have the two following select clauses which work fine, apart from each other:
and
I would like to combine those two selections to one. In SQL this would be something like
How can this be reached using ChronoConnectivity.
My question:
I have the two following select clauses which work fine, apart from each other:
<?php
if(JRequest::getVar('city')){
?>
WHERE text_2 = "<?php echo JRequest::getVar('city'); ?>"
<?php
and
<?php
if(JRequest::getVar('soort')){
?>
WHERE select_5 =
"<?php echo JRequest::getVar('soort') ; ?>"
<?php
I would like to combine those two selections to one. In SQL this would be something like
Select * from database where city = "xxx"
AND
soort = "yyy"
How can this be reached using ChronoConnectivity.