Accessing Your MySQL Database from the Web with PHP (Ch 11)
Other DML Queries from the Web INSERT, DELETE, UPDATE queries Working example: collect new book info and insert it into the database A PHP script to take the form data and write it into the db – same basic steps: Make a db connection Send a query over the connection Check the results
newbook.html A front end web form to collect new book info: http://cscdb.nku.edu/csc301/frank/Chapter11/newbook.html http://www.nku.edu/~frank/csc301/Examples/MySQL/newbook_html.pdf
Other DML Queries from the Web A PHP script to take the form data and write it into the db – same basic steps: Make a db connection Send a query over the connection Check the results http://www.nku.edu/~frank/csc301/Examples/MySQL/insert_book _php.pdf