Say I am looping through my dbase selects with a "while" loop
I want to display all the records but some records have the same dates listed
Say as I did the loop I threw the first date into a variable
$first = date; //<--- dynamically from the dbase
then I need to copy the contents of that variable elsewhere in order to create an unchangable static copy.
thats so when I compare the above dynamic variable to my stored static variable when I try and output the next row if the dynamic variable is the same as my static variable then I tell my scripts to not print the date to the browser...
Hope I am clear....
Any ideas???