hi guys...
i can't seem to get that format_date to work. i want to display a list of band tourdates, from today's date onward, and i want to format the date printed out like the guy does in the original question. here is part of my code:
$result = mysql_query("SELECT * FROM shows WHERE date >= CURDATE()",$db);
I call the date here:
while ($myrow = mysql_fetch_array($result)) {
printf($myrow["date"]);
}
so where do i put format_date in?
thanks,
mike