Query String
Query String
Step 2: Copy the following script (library.sql) and run it in Xampp Shell
USE library;
--
-- Table structure for table `book`
--
To search the books written by a particular author click on link generated under author
A query string is a part of a uniform resource locator that assigns values to specified parameters.
A query string commonly includes fields added to a base URL by a Web browser or other client
application, for example as part of an HTML form. Wikipedia
Books.php Book.php
Authors.php Author.php
a) New_Book.php is a form to add new books in Library database created by the above script
b) Books.php will display all the details entered in the database with a hyperlink under the title
of the book.if a user wants to know details of a particular book ,they can click on the title of
the book .
c) Authors.php will display all the details entered in the database with a hyperlink under the
author of the book.if a user wants to know all the books written by this particular Author ,
they can click on the Author of the book .