Thanks for the swift reply, not really sure i follow that. The information in the database is correct as far as i can see, although it has to be entered in the format yyyy-mm-dd, which seems odd to me but as I dont know how else to do it
This is part of the code for the user input
<input name="event_date" type="text" id="event_date" value="" size="55">
This is the code i am using to add to the database:
$database = mysql_connect($dbhost,$dbuser,$dbpass) or die("Could not connect to server");
mysql_select_db($dbname) or die(mysql_error());
mysql_query("INSERT INTO events (id, event_title, event_text, event_date) VALUES('','$title','$text','$date')") or die(mysql_error());
Thanks again