I have this calendar database where it has the date's details and the date.
The view calendar script displays each day in a table and the details in a colum in the same table, then I have a repeated region. (i'm using dreamweaver mx 2004 to automate most of the script).
my problem is is that i do not want repeated dates; I want the colum that has the details to show the details for every entry in the database, as long as the date is the same.
for example say the database has these 3 entries:
date: 2004-01-02 details: my details
date: 2004-01-02 details: my other details
date: 2004-02-03 details: new day's details
then on the page it needs to show
2004-01-02 | details: my details, my other details
2004-02-03 | details: new day's details
Thanks