Your Perfect Assignment is Just a Click Away

We Write Custom Academic Papers

100% Original, Plagiarism Free, Customized to your instructions!

glass
pen
clip
papers
heaphones

Create A Conference Room Scheduler PHP Web Application.

Create A Conference Room Scheduler PHP Web Application.

Create A Conference Room Scheduler PHP Web Application.

Requirements:

  • Allow users to login to the site
  • Allow users to register to the site
  • Users should be able to reserve rooms for a specified date and time range
  • Validate user input
  • Display error messages when appropriate.
  • List conference room reservations sorted in date and start time order
  • Allow two display options:
    • All-display all conference room reservation schedules; past and future
    • Future-display conference room reservations that are scheduled in the future only

* Do not allow reservations outside of business hours or during the weekends

A copy of the DB is attached

Note: you can make any modifications to the DB you feel you need

— phpMyAdmin SQL Dump — version 4.9.1 — https://www.phpmyadmin.net/ — — Host: 10.123.0.210:3307 — Generation Time: Sep 09, 2020 at 06:55 PM — Server version: 5.7.27 — PHP Version: 7.0.33-0+deb9u9 SET SQL_MODE = “NO_AUTO_VALUE_ON_ZERO”; SET AUTOCOMMIT = 0; START TRANSACTION; SET time_zone = “+00:00”; /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; /*!40101 SET NAMES utf8mb4 */; — — Database: `micdim1_db2` — — ——————————————————– — — Table structure for table `conferenceRoom` — CREATE TABLE `conferenceRoom` ( `roomID` int(11) NOT NULL, `capacity` int(11) DEFAULT NULL, `floorNum` int(11) DEFAULT NULL ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; — — Dumping data for table `conferenceRoom` — INSERT INTO `conferenceRoom` (`roomID`, `capacity`, `floorNum`) VALUES (101, 20, 1), (102, 15, 1), (103, 15, 1), (104, 10, 1), (105, 10, 1), (201, 15, 2), (202, 15, 2), (203, 20, 2), (204, 10, 2), (205, 25, 2); — ——————————————————– — — Table structure for table `reservation` — CREATE TABLE `reservation` ( `reservationID` int(11) NOT NULL, `userID` int(11) DEFAULT NULL, `roomID` int(12) DEFAULT NULL, `reservationDate` date DEFAULT NULL, `resStart` datetime DEFAULT NULL, `resEnd` datetime DEFAULT NULL ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; — — Dumping data for table `reservation` — INSERT INTO `reservation` (`reservationID`, `userID`, `roomID`, `reservationDate`, `resStart`, `resEnd`) VALUES (1, 1002, 104, ‘2020-08-24’, ‘2020-08-24 08:00:00’, ‘2020-08-24 08:30:00’), (2, 1004, 101, ‘2020-08-25’, ‘2020-08-25 09:20:00’, ‘2020-08-25 13:40:00’), (3, 1004, 201, ‘2020-08-28’, ‘2020-08-28 10:40:00’, ‘2020-08-28 13:40:00’); — ——————————————————– — — Table structure for table `user` — CREATE TABLE `user` ( `userID` int(11) NOT NULL, `userName` varchar(25) COLLATE utf8_unicode_ci DEFAULT NULL, `pass` varchar(25) COLLATE utf8_unicode_ci DEFAULT NULL ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; — — Dumping data for table `user` — INSERT INTO `user` (`userID`, `userName`, `pass`) VALUES (1001, ‘Nick’, ‘pass1’), (1002, ‘Jack’, ‘pass2’), (1003, ‘Sarah’, ‘pass3’), (1004, ‘Mike’, ‘pass4’); — — Indexes for dumped tables — — — Indexes for table `conferenceRoom` — ALTER TABLE `conferenceRoom` ADD PRIMARY KEY (`roomID`); — — Indexes for table `reservation` — ALTER TABLE `reservation` ADD PRIMARY KEY (`reservationID`), ADD KEY `userID` (`userID`), ADD KEY `roomID` (`roomID`); — — Indexes for table `user` — ALTER TABLE `user` ADD PRIMARY KEY (`userID`); — — AUTO_INCREMENT for dumped tables — — — AUTO_INCREMENT for table `conferenceRoom` — ALTER TABLE `conferenceRoom` MODIFY `roomID` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=206; — — AUTO_INCREMENT for table `user` — ALTER TABLE `user` MODIFY `userID` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=1005; COMMIT; /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;

Order Solution Now

Our Service Charter

1. Professional & Expert Writers: Writers Hero only hires the best. Our writers are specially selected and recruited, after which they undergo further training to perfect their skills for specialization purposes. Moreover, our writers are holders of masters and Ph.D. degrees. They have impressive academic records, besides being native English speakers.

2. Top Quality Papers: Our customers are always guaranteed papers that exceed their expectations. All our writers have +5 years of experience. This implies that all papers are written by individuals who are experts in their fields. In addition, the quality team reviews all the papers before sending them to the customers.

3. Plagiarism-Free Papers: All papers provided by Writers Hero are written from scratch. Appropriate referencing and citation of key information are followed. Plagiarism checkers are used by the Quality assurance team and our editors just to double-check that there are no instances of plagiarism.

4. Timely Delivery: Time wasted is equivalent to a failed dedication and commitment. Writers Hero is known for timely delivery of any pending customer orders. Customers are well informed of the progress of their papers to ensure they keep track of what the writer is providing before the final draft is sent for grading.

5. Affordable Prices: Our prices are fairly structured to fit all groups. Any customer willing to place their assignments with us can do so at very affordable prices. In addition, our customers enjoy regular discounts and bonuses.

6. 24/7 Customer Support: At Writers Hero, we have put in place a team of experts who answer all customer inquiries promptly. The best part is the ever-availability of the team. Customers can make inquiries anytime.