I am trying to get an IF statement to highlight daily additions...
if ($row_Flights['InputDate'] == $Today) {
print ("NEW");
}
if ($row_Flights['InputDate'] != $Today) {
print ("");
}
However this isn't working because if I understand it correctly, we are looking at seconds...so how do I get these dates to jive and just be a date and not 86400 seconds... ???