C
|
cgphp 12/27/2012 |
You don't need that code. $strWhereClause = whereAdd($strWhereClause,'datum = '.date("Y-m-d")); |
![]() |
Sergey Kornilov admin 12/27/2012 |
You can avoid using PHP code if you need select todays data only. Here is the sample SQL query: SELECT ... FROM ... WHERE date_field > DATE_SUB(NOW(), INTERVAL 1 DAY)
|
J
|
jackheitzer@gmail.com author 12/27/2012 |
You can avoid using PHP code if you need select todays data only. Here is the sample SQL query: SELECT ... FROM ... WHERE date_field > DATE_SUB(NOW(), INTERVAL 1 DAY)
|
J
|
jackheitzer@gmail.com author 12/27/2012 |
You don't need that code. In the "Before SQL query" event (http://xlinesoft.com/phprunner/docs/before_sql_query.htm) of the voorstelling table, enter the following code: $strWhereClause = whereAdd($strWhereClause,'datum = '.date("Y-m-d"));
|
C
|
cgphp 12/28/2012 |
The correct code is the following: $strWhereClause = whereAdd($strWhereClause,"datum = '".date("Y-m-d")."'"); |
J
|
jackheitzer@gmail.com author 12/28/2012 |
The correct code is the following: $strWhereClause = whereAdd($strWhereClause,"datum = '".date("Y-m-d")."'");
|