Lost in Where
Lost in Where
nessinits
Posts: 86Questions: 27Answers: 0
Hi all,
I need a .php where clause in my serverside PHP:
'WHERE published <= ' . "'" . Now() . "' " .
'AND published IS NOT NULL ' .
'AND (closed IS NULL '.
'OR closed >= ' . "'" . Now() . "') " .
'ORDER BY published DESC ';
How should I convert this to ->where() ?
This question has an accepted answers - jump to answer
This discussion has been closed.
Answers
Its all about using anonymous functions to get the grouping:
Allan