Hi Bob,
I have a cf that I've added two date pickers on the show html (named "startdate" and "enddate"):
[attachment=0]cf_datepicker.png[/attachment]
DB Read pulls the data which comes from several tables.
Now I'm trying to get the dates to actually pull properly. I have conditions in the db read as follows:
Still pulling all dates. Appreciate any guidance!
I have a cf that I've added two date pickers on the show html (named "startdate" and "enddate"):
[attachment=0]cf_datepicker.png[/attachment]
DB Read pulls the data which comes from several tables.
Now I'm trying to get the dates to actually pull properly. I have conditions in the db read as follows:
<?php
return array( 'p.order_product_code' => array( 'Student_Membership', 'Adult_Yearly_Membership', 'Adult_Membership_9', 'Staff_Membership_7', 'Staff_Membership_10'));
$startdate=$form->data['startdate'];
$enddate=$form->data['enddate'];
echo "Paypal Report: $startdate thru $enddate";
$db = JFactory::getDBO();
$query = $db->getQuery(true);
?>
Still pulling all dates. Appreciate any guidance!