Hi,
I can't explain this on the title. sorry for that. What I need is: On my mysql there are several news published in the morning. each comes one after another and sometimes at the same time. I want that it will differentiate with current times with the news time and will highlight the upcoming news.
My mySQL table data's are given below:
Can any one help me on this?
Regards
I can't explain this on the title. sorry for that. What I need is: On my mysql there are several news published in the morning. each comes one after another and sometimes at the same time. I want that it will differentiate with current times with the news time and will highlight the upcoming news.
My mySQL table data's are given below:
PHP Code:
while...
echo "<ul style='newsrow'>;
{
echo "<li>".$row['date']." - ".$row['time']." - ".$row['news']."</li>";
}
echo "</ul>";
Regards
Comment