This is my daquiri recipe again, this one when you hit the submit button gives you the information you have given, along with previous comments that others have added below.
This site is very helpful for review. While I was able to complete the PHP assignments some of the concepts were a little hazy. This site is helpful if you would like further explanation. The author provides example code and breaks down each step in a way that is easy to understand. For instance. Here was one of the basic examples:\n\nLoops like these come in handy whenever you're working with long lists of things (such as jokes stored in a database... hint-hint!), but for now we'll illustrate with a trivial example: counting to ten.\n\n$count = 1;\nwhile ($count );\n $count++;\n}\n\nKind of scary-looking, I know, but let me talk you through it line by line.
This site seems to have some basic (read: semi-easy to understand) information written in non-geek speak. Just the basic opening paragraph explained it to me better than reading a bunch of other pages I found
While by no means a complete reference, this page gives a much more thorough overview on MySQL that a lot of the other sites out there. I especially like the 'tips and functions' section.
A MySQL cheat sheet from the folks at Added Bytes. It isn't much for specific syntax, but it gives a broad overview. Explains different types of data used in setting up your database table. Also much date and time info, functions, and some sample select queries. Gives a feel for what's involved with the PHP/MySQL combination.