Script URL:
Version of script: 2.2
Hosting company:
URL of phpinfo.php:
URL of session_test.php:
What terms did you try when SEARCHING for a solution:
Write your message below:
How to modify the ticket date search to ONLY show the tickets closed on that day?
Modify the Date search option
Moderator: mkoch227
In admin/find_tickets.php try changing to
Code: Select all
(`dt` LIKE '".hesk_dbEscape($date)."%' OR `lastchange` LIKE '".hesk_dbEscape($date)."%')
Code: Select all
`status` = '3' AND `lastchange` LIKE '".hesk_dbEscape($date)."%'
Klemen, creator of HESK and PHPJunkyardWas this helpful? You can buy me a drink here 
You should follow me on Twitter here
Help desk software | Cloud help desk | Guestbook | Link manager | Click counter | more PHP Scripts ...
Also browse for php hosting companies, read php books, find php resources and use webmaster tools


Help desk software | Cloud help desk | Guestbook | Link manager | Click counter | more PHP Scripts ...
Also browse for php hosting companies, read php books, find php resources and use webmaster tools
Did you remove the entire code I posted (the "dt LIKE" part)?
Note that the time ticket is closed is not stored in a dedicated database column so using the lastchange column is the best and closest alternative.
Note that the time ticket is closed is not stored in a dedicated database column so using the lastchange column is the best and closest alternative.
Klemen, creator of HESK and PHPJunkyardWas this helpful? You can buy me a drink here 
You should follow me on Twitter here
Help desk software | Cloud help desk | Guestbook | Link manager | Click counter | more PHP Scripts ...
Also browse for php hosting companies, read php books, find php resources and use webmaster tools


Help desk software | Cloud help desk | Guestbook | Link manager | Click counter | more PHP Scripts ...
Also browse for php hosting companies, read php books, find php resources and use webmaster tools