C
|
copper21 10/30/2013 |
You are not giving $dat a value and the $strWhereClause needs to be like: |
S
|
suryateja619 author 10/30/2013 |
Hi Brian, You are not giving $dat a value and the $strWhereClause needs to be like: $dat = date('Y-m-d', strtotime(now())); $strWhereClause = whereAdd($strWhereClause, "date_received = '$dat'"); Or better yet, just do it in your SQL query on the Query Section: Select ... From YourTable WHERE date_received = CONVERT(varchar(10), GETDATE(), 111) |
C
|
copper21 10/30/2013 |
If you want access to all records, then you will use neither of those. If you just want today's records, then just use the search page and in the date_received field, use "equals" and then put today's date in.."10/30/2013" |