Skip to content

Implemented a RESTful webservice in PHP to retrieve the details of books.

Notifications You must be signed in to change notification settings

PriyankaParimi/RestFul-WebService-PHP

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

RestFulWebServicePHP

Implemented a simple RESTful web service using PHP.

Your web service should provide information about books.

http://localhost/books should give list of books (book titles only) that are stored in your database.

http:// localhost/books/id should give book details (title, year, price, category, authors) for given book id.

The database have the following schema:

Book (Book_id, title, year, price, category) Book_Authors (Book_id, Author_id) Authors (Author_id, Author_Name)

books.xml file is used to populate your database. Results retreived are in JSON format.

About

Implemented a RESTful webservice in PHP to retrieve the details of books.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages