A: 

Probably this:

mysql_db_query

should be:

mysql_query

making it like this:

$check = mysql_query($sql) or die(mysql_error());

Make also sure that you put these lines on top of your script to see if there are any errors coming up:

ini_set('display_errors', true);
error_reporting(E_ALL);
Sarfraz
Getting the info is not a problem its adding the evenClick that is supplied with the fullcalendar to work with the script I have. I'm almost sure its the JQUERY script that pulls info from the JSON page. Theres really no formatting for the events, Thats the script I need and have no idea how to write it..
Craig