In this assignment we read chapters 4, 5, and 9 of "PHP and MySQL for Dynamic Web Sites". The text went over the fundamentals of the mySQL database query language, as well as showed many various examples, and ways to utilize the language to create databases, and tables of stored information. You will find a link below that will take you to the demonstration website given by going through the examples in Chapter 9 of the book.
Click here to view the webpage!
This webpage utilizes many useful database functions, like the password changer, for example. This code creates a php application that allows a user to enter thier current email and password, and then change their old password into a new password. The code initially connects to the database on line 10, and then checks for the email address, and current password. After this check occurs, the program will look for the new password, and confirm password input, and then use the @mysql_query to run the data to the database, and push through the password change.
The code used for the password changer program.