I'm sure you are doing just fine. Once the fundamentals sink in, you'll be surprised about how much you can accomplish. Don't get discouraged, just keep at it.
Oh, and by the way, no, I didn't just drop some example code down, but I do promise all the code and examples you need are in those links I posted. Basically, where you had the infamous "Output Loop", you need to use a while loop with one of the mysql fetch functions: mysql_fetch_row(), mysql_fetch_array(), mysql_fetch_assoc() to display your information like:
while($row=mysql_fetch_assoc($result)) {
echo $row['First_Name'];
//...and so on...
}