├── Guidelines for populating the database.pdf ├── LICENSE ├── Library+Management+System_v1.3.pdf ├── Other Examples ├── Management │ ├── dbinfo.php │ ├── edQueryData.php │ ├── edQueryResult.php │ ├── index.php │ ├── logout.php │ ├── management.sql │ ├── menu.php │ ├── pjQueryData.php │ └── pjQueryResult.php └── Recipes │ ├── Recipeadd.php │ ├── Recipes.php │ ├── index.php │ └── recipes.sql ├── Phase ├── Phase I │ ├── CS4400 Project Phase I Report.pdf │ ├── ER │ ├── IFD.pdf │ ├── IFD.vsdx │ └── Keys │ │ ├── Alternate EER Solutions.png │ │ ├── EER_upd-1.pdf │ │ ├── EER_upd-1.png │ │ ├── IFD-1.pdf │ │ └── IFD-1.png ├── Phase II │ ├── CS4400 Project Phase II Report.pdf │ ├── Cover Page.docx │ ├── Cover Page.pdf │ ├── EER_upd-1.pdf │ ├── IFD-1.pdf │ ├── Phase II.zip │ ├── Relational Schema Diagram.docx │ ├── Relational Schema Diagram.pdf │ ├── SQL.docx │ ├── SQL.pdf │ ├── Table Statements.docx │ └── Table Statements.pdf └── Phase III │ ├── Library.zip │ ├── Phase III Group 24.zip │ └── library.txt ├── README.md └── src ├── AdminSummary.php ├── BookCheckout.php ├── ConfirmCheckout.php ├── ConfirmDamage.php ├── ConfirmExten.php ├── CreateProfile.php ├── DamagedBookReport.php ├── DamagedBooksReport.php ├── ExtensionResult.php ├── FrequentUserReport.php ├── FrequentUsersReport.php ├── FutureHoldRequestResult.php ├── FutureHoldRequestforaBook.php ├── HoldRequestforaBook.php ├── IssueIDgenerate.php ├── Login.php ├── LostDamagedBook.php ├── LostDamagedBook_Admin.php ├── LostDamagedBook_User.php ├── NewUserRegistration.php ├── PopularBookReport.php ├── PopularBooksReport.php ├── PopularSubjectReport.php ├── RequestExtensionOnaBook.php ├── ReturnBook.php ├── SearchBooks.php ├── TrackBookLocation.php ├── TrackResult.php ├── UserSummary.php ├── dbinfo.php └── library.sql /Guidelines for populating the database.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diaoenmao/Library-Management-System/HEAD/Guidelines for populating the database.pdf -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diaoenmao/Library-Management-System/HEAD/LICENSE -------------------------------------------------------------------------------- /Library+Management+System_v1.3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diaoenmao/Library-Management-System/HEAD/Library+Management+System_v1.3.pdf -------------------------------------------------------------------------------- /Other Examples/Management/dbinfo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diaoenmao/Library-Management-System/HEAD/Other Examples/Management/dbinfo.php -------------------------------------------------------------------------------- /Other Examples/Management/edQueryData.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diaoenmao/Library-Management-System/HEAD/Other Examples/Management/edQueryData.php -------------------------------------------------------------------------------- /Other Examples/Management/edQueryResult.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diaoenmao/Library-Management-System/HEAD/Other Examples/Management/edQueryResult.php -------------------------------------------------------------------------------- /Other Examples/Management/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diaoenmao/Library-Management-System/HEAD/Other Examples/Management/index.php -------------------------------------------------------------------------------- /Other Examples/Management/logout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diaoenmao/Library-Management-System/HEAD/Other Examples/Management/logout.php -------------------------------------------------------------------------------- /Other Examples/Management/management.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diaoenmao/Library-Management-System/HEAD/Other Examples/Management/management.sql -------------------------------------------------------------------------------- /Other Examples/Management/menu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diaoenmao/Library-Management-System/HEAD/Other Examples/Management/menu.php -------------------------------------------------------------------------------- /Other Examples/Management/pjQueryData.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diaoenmao/Library-Management-System/HEAD/Other Examples/Management/pjQueryData.php -------------------------------------------------------------------------------- /Other Examples/Management/pjQueryResult.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diaoenmao/Library-Management-System/HEAD/Other Examples/Management/pjQueryResult.php -------------------------------------------------------------------------------- /Other Examples/Recipes/Recipeadd.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diaoenmao/Library-Management-System/HEAD/Other Examples/Recipes/Recipeadd.php -------------------------------------------------------------------------------- /Other Examples/Recipes/Recipes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diaoenmao/Library-Management-System/HEAD/Other Examples/Recipes/Recipes.php -------------------------------------------------------------------------------- /Other Examples/Recipes/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diaoenmao/Library-Management-System/HEAD/Other Examples/Recipes/index.php -------------------------------------------------------------------------------- /Other Examples/Recipes/recipes.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diaoenmao/Library-Management-System/HEAD/Other Examples/Recipes/recipes.sql -------------------------------------------------------------------------------- /Phase/Phase I/CS4400 Project Phase I Report.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diaoenmao/Library-Management-System/HEAD/Phase/Phase I/CS4400 Project Phase I Report.pdf -------------------------------------------------------------------------------- /Phase/Phase I/ER: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diaoenmao/Library-Management-System/HEAD/Phase/Phase I/ER -------------------------------------------------------------------------------- /Phase/Phase I/IFD.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diaoenmao/Library-Management-System/HEAD/Phase/Phase I/IFD.pdf -------------------------------------------------------------------------------- /Phase/Phase I/IFD.vsdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diaoenmao/Library-Management-System/HEAD/Phase/Phase I/IFD.vsdx -------------------------------------------------------------------------------- /Phase/Phase I/Keys/Alternate EER Solutions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diaoenmao/Library-Management-System/HEAD/Phase/Phase I/Keys/Alternate EER Solutions.png -------------------------------------------------------------------------------- /Phase/Phase I/Keys/EER_upd-1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diaoenmao/Library-Management-System/HEAD/Phase/Phase I/Keys/EER_upd-1.pdf -------------------------------------------------------------------------------- /Phase/Phase I/Keys/EER_upd-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diaoenmao/Library-Management-System/HEAD/Phase/Phase I/Keys/EER_upd-1.png -------------------------------------------------------------------------------- /Phase/Phase I/Keys/IFD-1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diaoenmao/Library-Management-System/HEAD/Phase/Phase I/Keys/IFD-1.pdf -------------------------------------------------------------------------------- /Phase/Phase I/Keys/IFD-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diaoenmao/Library-Management-System/HEAD/Phase/Phase I/Keys/IFD-1.png -------------------------------------------------------------------------------- /Phase/Phase II/CS4400 Project Phase II Report.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diaoenmao/Library-Management-System/HEAD/Phase/Phase II/CS4400 Project Phase II Report.pdf -------------------------------------------------------------------------------- /Phase/Phase II/Cover Page.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diaoenmao/Library-Management-System/HEAD/Phase/Phase II/Cover Page.docx -------------------------------------------------------------------------------- /Phase/Phase II/Cover Page.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diaoenmao/Library-Management-System/HEAD/Phase/Phase II/Cover Page.pdf -------------------------------------------------------------------------------- /Phase/Phase II/EER_upd-1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diaoenmao/Library-Management-System/HEAD/Phase/Phase II/EER_upd-1.pdf -------------------------------------------------------------------------------- /Phase/Phase II/IFD-1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diaoenmao/Library-Management-System/HEAD/Phase/Phase II/IFD-1.pdf -------------------------------------------------------------------------------- /Phase/Phase II/Phase II.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diaoenmao/Library-Management-System/HEAD/Phase/Phase II/Phase II.zip -------------------------------------------------------------------------------- /Phase/Phase II/Relational Schema Diagram.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diaoenmao/Library-Management-System/HEAD/Phase/Phase II/Relational Schema Diagram.docx -------------------------------------------------------------------------------- /Phase/Phase II/Relational Schema Diagram.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diaoenmao/Library-Management-System/HEAD/Phase/Phase II/Relational Schema Diagram.pdf -------------------------------------------------------------------------------- /Phase/Phase II/SQL.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diaoenmao/Library-Management-System/HEAD/Phase/Phase II/SQL.docx -------------------------------------------------------------------------------- /Phase/Phase II/SQL.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diaoenmao/Library-Management-System/HEAD/Phase/Phase II/SQL.pdf -------------------------------------------------------------------------------- /Phase/Phase II/Table Statements.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diaoenmao/Library-Management-System/HEAD/Phase/Phase II/Table Statements.docx -------------------------------------------------------------------------------- /Phase/Phase II/Table Statements.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diaoenmao/Library-Management-System/HEAD/Phase/Phase II/Table Statements.pdf -------------------------------------------------------------------------------- /Phase/Phase III/Library.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diaoenmao/Library-Management-System/HEAD/Phase/Phase III/Library.zip -------------------------------------------------------------------------------- /Phase/Phase III/Phase III Group 24.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diaoenmao/Library-Management-System/HEAD/Phase/Phase III/Phase III Group 24.zip -------------------------------------------------------------------------------- /Phase/Phase III/library.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diaoenmao/Library-Management-System/HEAD/Phase/Phase III/library.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diaoenmao/Library-Management-System/HEAD/README.md -------------------------------------------------------------------------------- /src/AdminSummary.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diaoenmao/Library-Management-System/HEAD/src/AdminSummary.php -------------------------------------------------------------------------------- /src/BookCheckout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diaoenmao/Library-Management-System/HEAD/src/BookCheckout.php -------------------------------------------------------------------------------- /src/ConfirmCheckout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diaoenmao/Library-Management-System/HEAD/src/ConfirmCheckout.php -------------------------------------------------------------------------------- /src/ConfirmDamage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diaoenmao/Library-Management-System/HEAD/src/ConfirmDamage.php -------------------------------------------------------------------------------- /src/ConfirmExten.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diaoenmao/Library-Management-System/HEAD/src/ConfirmExten.php -------------------------------------------------------------------------------- /src/CreateProfile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diaoenmao/Library-Management-System/HEAD/src/CreateProfile.php -------------------------------------------------------------------------------- /src/DamagedBookReport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diaoenmao/Library-Management-System/HEAD/src/DamagedBookReport.php -------------------------------------------------------------------------------- /src/DamagedBooksReport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diaoenmao/Library-Management-System/HEAD/src/DamagedBooksReport.php -------------------------------------------------------------------------------- /src/ExtensionResult.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diaoenmao/Library-Management-System/HEAD/src/ExtensionResult.php -------------------------------------------------------------------------------- /src/FrequentUserReport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diaoenmao/Library-Management-System/HEAD/src/FrequentUserReport.php -------------------------------------------------------------------------------- /src/FrequentUsersReport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diaoenmao/Library-Management-System/HEAD/src/FrequentUsersReport.php -------------------------------------------------------------------------------- /src/FutureHoldRequestResult.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diaoenmao/Library-Management-System/HEAD/src/FutureHoldRequestResult.php -------------------------------------------------------------------------------- /src/FutureHoldRequestforaBook.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diaoenmao/Library-Management-System/HEAD/src/FutureHoldRequestforaBook.php -------------------------------------------------------------------------------- /src/HoldRequestforaBook.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diaoenmao/Library-Management-System/HEAD/src/HoldRequestforaBook.php -------------------------------------------------------------------------------- /src/IssueIDgenerate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diaoenmao/Library-Management-System/HEAD/src/IssueIDgenerate.php -------------------------------------------------------------------------------- /src/Login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diaoenmao/Library-Management-System/HEAD/src/Login.php -------------------------------------------------------------------------------- /src/LostDamagedBook.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diaoenmao/Library-Management-System/HEAD/src/LostDamagedBook.php -------------------------------------------------------------------------------- /src/LostDamagedBook_Admin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diaoenmao/Library-Management-System/HEAD/src/LostDamagedBook_Admin.php -------------------------------------------------------------------------------- /src/LostDamagedBook_User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diaoenmao/Library-Management-System/HEAD/src/LostDamagedBook_User.php -------------------------------------------------------------------------------- /src/NewUserRegistration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diaoenmao/Library-Management-System/HEAD/src/NewUserRegistration.php -------------------------------------------------------------------------------- /src/PopularBookReport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diaoenmao/Library-Management-System/HEAD/src/PopularBookReport.php -------------------------------------------------------------------------------- /src/PopularBooksReport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diaoenmao/Library-Management-System/HEAD/src/PopularBooksReport.php -------------------------------------------------------------------------------- /src/PopularSubjectReport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diaoenmao/Library-Management-System/HEAD/src/PopularSubjectReport.php -------------------------------------------------------------------------------- /src/RequestExtensionOnaBook.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diaoenmao/Library-Management-System/HEAD/src/RequestExtensionOnaBook.php -------------------------------------------------------------------------------- /src/ReturnBook.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diaoenmao/Library-Management-System/HEAD/src/ReturnBook.php -------------------------------------------------------------------------------- /src/SearchBooks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diaoenmao/Library-Management-System/HEAD/src/SearchBooks.php -------------------------------------------------------------------------------- /src/TrackBookLocation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diaoenmao/Library-Management-System/HEAD/src/TrackBookLocation.php -------------------------------------------------------------------------------- /src/TrackResult.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diaoenmao/Library-Management-System/HEAD/src/TrackResult.php -------------------------------------------------------------------------------- /src/UserSummary.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diaoenmao/Library-Management-System/HEAD/src/UserSummary.php -------------------------------------------------------------------------------- /src/dbinfo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diaoenmao/Library-Management-System/HEAD/src/dbinfo.php -------------------------------------------------------------------------------- /src/library.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diaoenmao/Library-Management-System/HEAD/src/library.sql --------------------------------------------------------------------------------