Ok, one more question. My update statement doesn't seem to be working right:
$result = mysql_query("update $database_table
set month='$month', day='$day', year='$year', weekday='$weekday', venue='$venue', location='$location', details='$details', date=CONCAT($year,'-',$month,'-',$day)
where show_id = '$the_id'",$db)
or die_now("<h2>Could not change show</h2>");
The date value is getting set as 0000-00-00.
What am I doing wrong here?