how to list present day?

This public forum is for user-to-user discussions of PHPMaker. Note that this is not support forum.
Post Reply
ZeR0C00L
User
Posts: 6

how to list present day?

Post by ZeR0C00L »

I'm going to date with the information that PHPMaker entries. When I want to list the information on the site of the day ( present day )


mpol_ch
User
Posts: 877
Location: Switzerland

Post by mpol_ch »

Hello

User an extended filter with preset with "date('d.m.Y') to list all records that are entered today.

mpol_ch


ZeR0C00L
User
Posts: 6

Post by ZeR0C00L »

how can do this i dont understand


digitalphotoworld
User
Posts: 416
Location: Nürnberg/Germany

Post by digitalphotoworld »

You should explain your problem better.

If you want the records from the actual date, you could use a view:

select * from <table> where created > subdate(now(), interval 1 day)

This query gives you all data that was created the last 24 hours (if your table has a field created that contain a timestime)


Post Reply