This little date formating problem is holding me up!
Here is the sql query string.
.....
WHERE
(`work_orders`. `date_closed` > $ > $start_date)
AND (`work_orders`. `date_closed` < $end_date)
ORDER BY
(`work_orders`. `date_closed`)" ;
The dates are in the 2005-05-16 format already.
A typical start_date might be: 2005-05-11 with end_date of 2005-05-16
I get no results returned even though there are records that meet that
criteria.
help please.
bob
Here is the sql query string.
.....
WHERE
(`work_orders`. `date_closed` > $ > $start_date)
AND (`work_orders`. `date_closed` < $end_date)
ORDER BY
(`work_orders`. `date_closed`)" ;
The dates are in the 2005-05-16 format already.
A typical start_date might be: 2005-05-11 with end_date of 2005-05-16
I get no results returned even though there are records that meet that
criteria.
help please.
bob
Comment