How to get a list of unrepeatable date from my db in PHP?
Posted
by SzamDev
on Stack Overflow
See other posts from Stack Overflow
or by SzamDev
Published on 2010-06-15T07:18:56Z
Indexed on
2010/06/15
7:22 UTC
Read the original article
Hit count: 182
Hi
in my db there are 5 fields (id, list_date, amount, total, m_from)
and contain data, for example :
1 - 1/1/2010 - 10 - 50 - 'example111'
1 - 1/1/2010 - 10 - 50 - 'example111'
1 - 1/4/2010 - 10 - 50 - 'example154
1 - 1/1/2010 - 10 - 50 - 'example111'
1 - 1/5/2010 - 10 - 50 - 'test'
I need to know how I can get dates from list_date but without repeatable dates like '1/1/2010, 1/5/2010, 1/4/2010'
Thanks in Advance.
© Stack Overflow or respective owner