This chapter discusses how to connect to and manipulate MySQL databases from PHP. It covers connecting to MySQL, executing SQL statements to retrieve, insert, update and delete records, and retrieving result sets. Functions covered include mysql_connect(), mysql_query(), mysql_fetch_row(), mysql_affected_rows(), and mysql_close(). The chapter aims to teach how to connect to a MySQL database, execute SQL statements to manipulate data, and work with result sets in PHP.