Hi, a little date format problem: $result2 returns a String date from MySQL in the form 2005-03-23, and it is inserted in to a table. I just want to take that String and date format it into a day of the week 'Wed' for example, and insert that instead? Any help would be appreciated, thanks..
Code:
while ($row = @ mysql_fetch_row($result2))
{
echo "<td bgcolor='red' colspan='4'>".$row[0]."</td>";
}