Re: [PHP] Hello and help

2003-01-03 Thread Joseph W. Goff
You are on the right track, but missed one major thing. Anytime you want to retrieve information from a database result set you have to follow 3 basic steps. 1) Connect to the database *you got that one 2) Execute a query *you got that one 3) Retrieve the resultset ***missed this one See http://ww

Re: [PHP] Hello and help

2003-01-03 Thread Richard Baskett
Use this instead: \n"); print ("\n"); print ("\n"); print ("Calender \n"); print ("\n"); print("{$result['meeting_name']}\n") or die ("you suck"); mysql_close ($Link); ?> So basically make sure you escape your double quotes within your print statements, plus yo