Introduction of Restaurant Management System in PHP
This is PHP Project on Simple "Restaurant Management System", which has been developed in PHP script jQuery and Bootstrap 4 library. The main objective of this system is overcome the problem of current managing table booked and order or billing manual system of the Restaurant, and convert that system into simple and full proofed process by this PHP Restauant Management System. Currently, we have see in restaurant when we have go to restaurant then waiter has come and take order and waiter has write order in diary and then after it will tell order to cooked manually and at the time of creating bill then again waiter go to cashier counter and again tell customer order detail manually, so by using this system Waiter will directly store customer order details and under this system and when customer go to cashier counter his bill with ready with all their food item this.
Goal of Restaurant Management System
This PHP project we have build for educational purpose, so new programmer can learn how to developed any web based application. With this post you will find the complete source code of this system and you can also get the link of Live demo of Restaurant Management System. This Restaurant Management System is an Open Source system which you can download from this post under zip format and you can check complete source code in you local computer. So you can modified code and learn how to build PHP based web application or developed web development application. You can even use the Source code in you academic projects of your final year project.
Modules of Restaurant Management System
Following are the Module of Restaurant Management System.
- Order Management Module
- Billing Management Module
- Live Table Status Module
- Food Category Module
- Food Item Module
- Tax Management Module
- User Management Module
Feature of Restaurant Management System
- There are mainly three user under this sysem. Master User, Waiter & Cashier
- Master User can Set up Restuarant Management System.
- Master User can set the Currency of Restuarant Management System at the time of Set of System.
- Master User can set the Timezone of this Restuarant Management System at the time of Set of System.
- Master User can Add Edit Delete and View Category Data.
- Master User can Add Edit Delete and View Food Item Data.
- Master User can Add Edit Delete and View tax details.
- Master User can Add Edit Delete and View Restaurant Table details.
- Master User can Add Edit Delete and View User data. That means master user can create new User account and lock user account also.
- Master User can create edit delete and view Restaurant Order data.
- Master User can Create Edit Delete and View Restaurant Billing Data.
- Master User can View Live Status of Table thatmeans which table is booked and which table is available.
- Master User can view data of Today sales, Yesterday sales, Last 7 Days sales and All time sales data also.
- Waiter User can Create and edit Order details.
- Waiter USer can view Live Table status.
- Cashier USer can View list of billing data, he can check the status of bill and he can take print of bill.
- Cashier User can view the live table status.
- This Restaurant Management System is fully responsive and mobile friendly this is beacuse for build this system we have use Bootstrap 4 Admin template.
Web Technology Used in Restaurant Management System
There are following Web Technology has used for build this Restaurant Management System.
Server-Side
- PHP
- Mysql Database
Client-side
- jQuery
- Ajax
- Bootstrap 4
- Parsley.js
- jQuery DataTable Plugin
- Bootstrap Select Plugin
Database of Restaurant Management System
Before start using this Restaurant Management System, first you have to create database of system. So for create database of this system you have to create new database in your local phpmyadmin and then after run following sql script. So it will make required table for this Restaurant Management system and user can check source in your local computer.
--
-- Database: `rms`
--
-- --------------------------------------------------------
--
-- Table structure for table `order_item_table`
--
CREATE TABLE `order_item_table` (
`order_item_id` int(11) NOT NULL,
`order_id` int(11) NOT NULL,
`product_name` varchar(250) COLLATE utf8_unicode_ci NOT NULL,
`product_quantity` int(4) NOT NULL,
`product_rate` decimal(12,2) NOT NULL,
`product_amount` decimal(12,2) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
-- --------------------------------------------------------
--
-- Table structure for table `order_table`
--
CREATE TABLE `order_table` (
`order_id` int(11) NOT NULL,
`order_number` varchar(30) COLLATE utf8_unicode_ci NOT NULL,
`order_table` varchar(250) COLLATE utf8_unicode_ci NOT NULL,
`order_gross_amount` decimal(12,2) NOT NULL,
`order_tax_amount` decimal(12,2) NOT NULL,
`order_net_amount` decimal(12,2) NOT NULL,
`order_date` date NOT NULL,
`order_time` time NOT NULL,
`order_waiter` varchar(250) COLLATE utf8_unicode_ci NOT NULL,
`order_cashier` varchar(250) COLLATE utf8_unicode_ci NOT NULL,
`order_status` enum('In Process','Completed') COLLATE utf8_unicode_ci NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
-- --------------------------------------------------------
--
-- Table structure for table `order_tax_table`
--
CREATE TABLE `order_tax_table` (
`order_tax_table_id` int(11) NOT NULL,
`order_id` int(11) NOT NULL,
`order_tax_name` varchar(200) COLLATE utf8_unicode_ci NOT NULL,
`order_tax_percentage` decimal(4,2) NOT NULL,
`order_tax_amount` decimal(12,2) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
-- --------------------------------------------------------
--
-- Table structure for table `product_category_table`
--
CREATE TABLE `product_category_table` (
`category_id` int(11) NOT NULL,
`category_name` varchar(250) COLLATE utf8_unicode_ci NOT NULL,
`category_status` enum('Enable','Disable') COLLATE utf8_unicode_ci NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
-- --------------------------------------------------------
--
-- Table structure for table `product_table`
--
CREATE TABLE `product_table` (
`product_id` int(11) NOT NULL,
`category_name` varchar(250) COLLATE utf8_unicode_ci NOT NULL,
`product_name` varchar(250) COLLATE utf8_unicode_ci NOT NULL,
`product_price` decimal(10,2) NOT NULL,
`product_status` enum('Enable','Disable') COLLATE utf8_unicode_ci NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
-- --------------------------------------------------------
--
-- Table structure for table `restaurant_table`
--
CREATE TABLE `restaurant_table` (
`restaurant_id` int(11) NOT NULL,
`restaurant_name` varchar(250) COLLATE utf8_unicode_ci NOT NULL,
`restaurant_tag_line` varchar(300) COLLATE utf8_unicode_ci NOT NULL,
`restaurant_address` text COLLATE utf8_unicode_ci NOT NULL,
`restaurant_contact_no` varchar(30) COLLATE utf8_unicode_ci NOT NULL,
`restaurant_email` varchar(250) COLLATE utf8_unicode_ci NOT NULL,
`restaurant_currency` varchar(10) COLLATE utf8_unicode_ci NOT NULL,
`restaurant_timezone` varchar(250) COLLATE utf8_unicode_ci NOT NULL,
`restaurant_logo` varchar(250) COLLATE utf8_unicode_ci NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
-- --------------------------------------------------------
--
-- Table structure for table `table_data`
--
CREATE TABLE `table_data` (
`table_id` int(11) NOT NULL,
`table_name` varchar(250) COLLATE utf8_unicode_ci NOT NULL,
`table_capacity` int(3) NOT NULL,
`table_status` enum('Enable','Disable') COLLATE utf8_unicode_ci NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
-- --------------------------------------------------------
--
-- Table structure for table `tax_table`
--
CREATE TABLE `tax_table` (
`tax_id` int(11) NOT NULL,
`tax_name` varchar(250) COLLATE utf8_unicode_ci NOT NULL,
`tax_percentage` decimal(4,2) NOT NULL,
`tax_status` enum('Enable','Disable') COLLATE utf8_unicode_ci NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
-- --------------------------------------------------------
--
-- Table structure for table `user_table`
--
CREATE TABLE `user_table` (
`user_id` int(11) NOT NULL,
`user_name` varchar(250) COLLATE utf8_unicode_ci NOT NULL,
`user_contact_no` varchar(30) COLLATE utf8_unicode_ci NOT NULL,
`user_email` varchar(30) COLLATE utf8_unicode_ci NOT NULL,
`user_password` varchar(250) COLLATE utf8_unicode_ci NOT NULL,
`user_profile` varchar(250) COLLATE utf8_unicode_ci NOT NULL,
`user_type` enum('Master','Waiter','Cashier') COLLATE utf8_unicode_ci NOT NULL,
`user_status` enum('Enable','Disable') COLLATE utf8_unicode_ci NOT NULL,
`user_created_on` datetime NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
--
-- Indexes for dumped tables
--
--
-- Indexes for table `order_item_table`
--
ALTER TABLE `order_item_table`
ADD PRIMARY KEY (`order_item_id`);
--
-- Indexes for table `order_table`
--
ALTER TABLE `order_table`
ADD PRIMARY KEY (`order_id`);
--
-- Indexes for table `order_tax_table`
--
ALTER TABLE `order_tax_table`
ADD PRIMARY KEY (`order_tax_table_id`);
--
-- Indexes for table `product_category_table`
--
ALTER TABLE `product_category_table`
ADD PRIMARY KEY (`category_id`);
--
-- Indexes for table `product_table`
--
ALTER TABLE `product_table`
ADD PRIMARY KEY (`product_id`);
--
-- Indexes for table `restaurant_table`
--
ALTER TABLE `restaurant_table`
ADD PRIMARY KEY (`restaurant_id`);
--
-- Indexes for table `table_data`
--
ALTER TABLE `table_data`
ADD PRIMARY KEY (`table_id`);
--
-- Indexes for table `tax_table`
--
ALTER TABLE `tax_table`
ADD PRIMARY KEY (`tax_id`);
--
-- Indexes for table `user_table`
--
ALTER TABLE `user_table`
ADD PRIMARY KEY (`user_id`);
--
-- AUTO_INCREMENT for dumped tables
--
--
-- AUTO_INCREMENT for table `order_item_table`
--
ALTER TABLE `order_item_table`
MODIFY `order_item_id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=1;
--
-- AUTO_INCREMENT for table `order_table`
--
ALTER TABLE `order_table`
MODIFY `order_id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=1;
--
-- AUTO_INCREMENT for table `order_tax_table`
--
ALTER TABLE `order_tax_table`
MODIFY `order_tax_table_id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=1;
--
-- AUTO_INCREMENT for table `product_category_table`
--
ALTER TABLE `product_category_table`
MODIFY `category_id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=1;
--
-- AUTO_INCREMENT for table `product_table`
--
ALTER TABLE `product_table`
MODIFY `product_id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=1;
--
-- AUTO_INCREMENT for table `restaurant_table`
--
ALTER TABLE `restaurant_table`
MODIFY `restaurant_id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=1;
--
-- AUTO_INCREMENT for table `table_data`
--
ALTER TABLE `table_data`
MODIFY `table_id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=1;
--
-- AUTO_INCREMENT for table `tax_table`
--
ALTER TABLE `tax_table`
MODIFY `tax_id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=1;
--
-- AUTO_INCREMENT for table `user_table`
--
ALTER TABLE `user_table`
MODIFY `user_id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=1;
So before using source code in your local computer first you have to set up database in your local phpmyadmin and then after you can run this PHP Restaurant Management System in your local computer and you can check the whole feature of this Restuarant Management System. But before check this system in your local computer first you have to check the demo of this system. So you can understand the functionality of this system and then after you can check this system in your local computer. With this post you can find demo link of this Restaurant Management System and when you login into demo link Restaurant Management System you can find source code download link. So from demo you can find the complete source code of this Restaurant Management System in PHP.
If you have any query or inputs regarding this PHP Restaurant Management System, you can write in comment box, we will reply on your comment.
please provide the source sode
ReplyDeleteHi we have add source code link at the demo of this tutorial, once you have login into demo then you can able to download source code of this restaurant management system.
DeleteWhere we can find the password????
DeletePassword for the source code file is "scoprmspv1-rar"
DeleteWhere is the source code?
ReplyDeleteplease provide the password
DeleteCan you tell in which file format you have download source code.
Deletezip file thank you
DeleteThank you for this very interesting project. Canwe have the Source Code please ?
ReplyDeleteHi we have add source code link at the demo of this tutorial, once you have login into demo then you can able to download source code of this restaurant management system.
Deletecan any body help me in getting the source code of the Restaurant Management System in PHP With Source Code
Deletethere is no sourcode here please upload
ReplyDeleteHi recently we have upload source code and put source code download link at demo of this tutorial, so once you have login into demo of this restaurant management system, then you can able to download source code.
Deletei didn't find the demo link
ReplyDeleteWe have put demo link under this post, please check it again.
Deleteplease tell the password
DeleteCan you tell in which file format you have download source code.
DeleteZip file
DeleteThank you for this very interesting project. Can we have the Source Code please ?
ReplyDeleteIt will help me in my final year project
Hi, we have uploaded source code link in demo of this tutorial, so for download source code you have to login into system and then after you can able to download source code and it is very interesting if you have use this php project in your final year project, best of luck.
Deletethank you sir but is password protected.
DeleteCan you tell in which file format you have download source code.
DeleteSir, if possible i have a request to make.
ReplyDeleteI am writing a final year project on online examination system and i want you to help me add the following task to the existing online system posted on this website.
The system should:
1. Allow admin to set many questions and select few questions from the set questions to the user. Like select 20 questions from 100 to each user.
2. The system should have a submit button and a timer. User can submit his exam whenever he wish to.
3. The system should also allow an admin to reschedule exam for those that were not able to take the first exam.
4. Admin can import and export exam questions.
5. A page containing a complete result of all subject taking by a user and ranking. For both single user and cummulative users.
6. Even if user refresh the page, the system should display the same questions.
Sir, May God Bless you and reward you abundantly as you feed the world with your vast knowledge.
Usalanzai@gmail.com
+2348131622133
Pls. Help me achieve this.
thanks alot and very inserted for this project
ReplyDeleteNo source code link there.... please send
ReplyDeleteHi we have add source code link at the demo of this tutorial, once you have login into demo then you can able to download source code of this restaurant management system.
DeleteSir, project is superb. Pls upload source code.
ReplyDeleteThanks
Hi we have add source code link at the demo of this tutorial, once you have login into demo then you can able to download source code of this restaurant management system.
DeleteThanks sir, project is superb.
ReplyDeletePls upload source code.
Thanks for your feedback and we have add source code link at the demo of this tutorial, once you have login into demo then you can able to download source code of this restaurant management system.
DeletePlease sir help us get the source code
ReplyDeleteHi we have add source code link at the demo of this tutorial, once you have login into demo then you can able to download source code of this restaurant management system.
DeleteCanwe have the Source Code please ?
ReplyDeleteSource Code????
ReplyDeleteHi recently we have upload source code and put source code download link at demo of this tutorial, so once you have login into demo of this restaurant management system, then you can able to download source code.
DeleteHi can you make a tutorial on how we can convert a image to excel file.
ReplyDeleteSir, project is superb. pls upload source code.
ReplyDeleteThanks
Hi recently we have upload source code and put source code download link at demo of this tutorial, so once you have login into demo of this restaurant management system, then you can able to download source code.
DeleteSir, please provide password of RAR file
DeleteSir pls provide password.
DeletePassword for RAR file is scoprmspv1-rar
DeleteSir, during unzipping source code it is asking for password. Can i get the password??
ReplyDeleteCan you tell in which file format you have download source code.
DeleteSir help us with the password to extract the rar file.
ReplyDeletePassword for RAR file is scoprmspv1-rar
DeleteWinRAR have password sir please tell your File password
ReplyDeletePassword for RAR file is scoprmspv1-rar
DeletePlease give me the password to extract! Thank you
ReplyDeletePassword for RAR file is scoprmspv1-rar
DeleteShare the Password Please to open the zip or rar file
ReplyDeletePassword for RAR file is scoprmspv1-rar
DeleteExcelente felicitaciones
ReplyDeleteThanks...
DeleteThank a lot for this tutorial
ReplyDeletewhat password to unzip the file source code?
ReplyDeletePassword zip file is scoprmspv1-zip
Deletethe password is incorrect.
ReplyDeletePassword for zip file is scoprmspv1-zip
DeleteShare the Password Please to open the zip or rar file
ReplyDeletePassword for zip file is scoprmspv1-zip
Deletecan Share the Password thank you
ReplyDeleteThanks for download source code, and password for zip file is scoprmspv1-zip
Deletehi thanks for this project but what is password of source code zip file
ReplyDeleteSorry 4 2 much inquiries, but the database file isn't there.
ReplyDeleteHi, we have put complete sql file under this post - https://www.webslesson.info/2020/12/restaurant-management-system-in-php.html check it.
DeleteHi, we have put complete sql file under this post - https://www.webslesson.info/2020/12/restaurant-management-system-in-php.html check it.
Deletescoprmspv1-rar is for rar extension file. if u have downloaded a zip file then use this password scoprmspv1-zip simply
ReplyDeletecan you please give me a URL to run the code in local host xammp
ReplyDeletecan you put the link please??
i change the directory of $base_url in rms.php to : http://localhost/www/
ReplyDeletewhen i try to go to localhost it redirect to register.php and i get a page
Object not found!
The requested URL was not found on this server.
If you entered the URL manually please check your spelling and try again.
If you think this is a server error, please contact the webmaster.
Error 404
localhost
Apache/2.4.34 (Unix) OpenSSL/1.0.2o PHP/7.2.8 mod_perl/2.0.8-dev Perl/v5.16.3
rar password
ReplyDeleteThanks for download source code, and password for zip file is scoprmspv1-rar
DeleteHello. I tried the source code. But It looks like Admin have not permits in the database. I cannot see the left menu with the operative options. Could you give me any clue?
ReplyDeleteThanks!
Sir When I Print a Billing PDF it's says PDF was Corrupted . unable to print pdf sir Help Me
ReplyDeletehey did you get the answer for this problem?
DeletePlease help i got this kind of error. Please Help.
ReplyDeleteFatal error: Uncaught Error: Call to a member function prepare() on null in C:\xampp\htdocs\source-code-restaurant-management-system-version-1\rms.php:31 Stack trace: #0 C:\xampp\htdocs\source-code-restaurant-management-system-version-1\rms.php(408): rms->execute() #1 C:\xampp\htdocs\source-code-restaurant-management-system-version-1\index.php(8): rms->Is_set_up_done() #2 {main} thrown in C:\xampp\htdocs\source-code-restaurant-management-system-version-1\rms.php on line 31
Please help i got this kind of error. Please Help.
ReplyDeleteFatal error: Uncaught Error: Call to a member function prepare() on null in D:\xampp\htdocs\0208\Restaurant Management System in PHP\rms.php:31 Stack trace: #0 D:\xampp\htdocs\0208\Restaurant Management System in PHP\rms.php(408): rms->execute() #1 D:\xampp\htdocs\0208\Restaurant Management System in PHP\index.php(8): rms->Is_set_up_done() #2 {main} thrown in D:\xampp\htdocs\0208\Restaurant Management System in PHP\rms.php on line 31
please provide password
ReplyDeleteHello Weblesson,
ReplyDeleteI need help with this:
Fatal error: Uncaught Error: Call to a member function prepare() on null in C:\xampp\htdocs\Restaurant\rms.php:31 Stack trace: #0 C:\xampp\htdocs\Restaurant\rms.php(408): rms->execute() #1 C:\xampp\htdocs\Restaurant\index.php(8): rms->Is_set_up_done() #2 {main} thrown in C:\xampp\htdocs\Restaurant\rms.php on line 31
What does this mean? I have completed all step in the instruction with no luck
Please provide Solution ?
ReplyDeleteFatal error: Uncaught Error: Call to a member function prepare() on null in D:\xampp\htdocs\source-code-restaurant-management-system-version-1\rms.php:31 Stack trace: #0 D:\xampp\htdocs\source-code-restaurant-management-system-version-1\rms.php(408): rms->execute() #1 D:\xampp\htdocs\source-code-restaurant-management-system-version-1\index.php(6): rms->Is_set_up_done() #2 {main} thrown in D:\xampp\htdocs\source-code-restaurant-management-system-version-1\rms.php on line 31
Please provide sql database file
ReplyDelete
ReplyDeleteFatal error: Uncaught Error: Call to a member function prepare() on null in C:\xampp\htdocs\RMS\rms.php:31 Stack trace: #0 C:\xampp\htdocs\RMS\rms.php(406): rms->execute() #1 C:\xampp\htdocs\RMS\index.php(8): rms->Is_set_up_done() #2 {main} thrown in C:\xampp\htdocs\RMS\rms.php on line 31
hello sir ,
ReplyDeleteThe requested URL /source-code-restaurant-management-system-version-1/register.php was not found on this server.
i got this error please help.
Thanks & Regards
shubham
what password did you use to extract?
DeleteError on this Line pls Help
ReplyDelete$this->statement = $this->connect->prepare($this->query);
Hello...check the connection to the bd
Deleteunable to take print from bill, plz help me
ReplyDeleteThe system is great, as I feel there is missing a discount feature on each billing so could you please add this.
ReplyDeletePlease help i got this kind of error. Please Help.
ReplyDeleteFatal error: Uncaught Error: Call to a member function prepare() on null in D:\xampp\htdocs\0208\Restaurant Management System in PHP\rms.php:31 Stack trace: #0 D:\xampp\htdocs\0208\Restaurant Management System in PHP\rms.php(408): rms->execute() #1 D:\xampp\htdocs\0208\Restaurant Management System in PHP\index.php(8): rms->Is_set_up_done() #2 {main} thrown in D:\xampp\htdocs\0208\Restaurant Management System in PHP\rms.php on line 31
got any solution?
DeleteI have this kind of error sir.
ReplyDeleteplease help me sir.
Fatal error: Uncaught Error: Call to a member function prepare() on null in D:\xampp\htdocs\0208\Restaurant Management System in PHP\rms.php:31 Stack trace: #0 D:\xampp\htdocs\0208\Restaurant Management System in PHP\rms.php(408): rms->execute() #1 D:\xampp\htdocs\0208\Restaurant Management System in PHP\index.php(8): rms->Is_set_up_done() #2 {main} thrown in D:\xampp\htdocs\0208\Restaurant Management System in PHP\rms.php on line 31
Hello sir,
ReplyDeleteI had successfully run this program but i have facing only one problem that is print receipt problem that pdf is download after shows the error that is failed to load pdf document error it is not preview so kindly pls give solution for this problem i will be waiting for your reply sir..
Thanking You
Can I host it online?
ReplyDeletewhat version of php is used?
ReplyDeleteI'm using version 8 and it looks like this
Fatal error: Uncaught Error: Call to a member function prepare() on null in C:\xampp\htdocs\_resto\rms.php:29 Stack trace: #0 C:\xampp\htdocs\_resto\rms.php(361): rms->execute() #1 C:\xampp\htdocs\_resto\index.php(8): rms->Is_set_up_done() #2 {main} thrown in C:\xampp\htdocs\_resto\rms.php on line 29
any help?
Have you solved this issue?
DeleteHi, thanks for this great example.
ReplyDeleteI have a question: In Italy we have a fee to be charged on the service for each person sitting at the table which is called covered. How can I add it automatically at the time of billing based on the number of people sitting at the table?
please provide the password
ReplyDeleteThanks for download source code, and password for zip file is scoprmspv1-rar
Deletepassword of sourcecode
ReplyDeletehi!
ReplyDeletefull script is for sale?
Sir what is password of zip file
ReplyDeletegreat
ReplyDeleteCan you help me creating database
ReplyDeleteI have downloaded the file and want password to unzip my zip folder
ReplyDeleteThanks for download source code, and password for zip file is scoprmspv1-rar
DeleteI've downloaded the zip file but its locked plz provide the password. Thanks
ReplyDeleteThis comment has been removed by the author.
ReplyDeleteHello Gentlemen,
ReplyDeletewhen i try to call the base url to start the setup (i have sucessfully created the db and the tables) then i get the following error on the browser console: This page is in Quirks Mode. Page layout may be impacted. For Standards Mode use “”.
What can i do to solve it?
Thank you in advance.
Sir rms.php file is not supported in php 7 or higher..
ReplyDeletePlease guide me what to do
nice project I'm actually using it for a while now but is there any change to have a script that can count the total products that have been sold? for example in 2 different orders having 3 and 4 beers and i want to get a result of total beers sold 7.. for each product...
ReplyDeletehow to reduce print page size ?
ReplyDeletewhere is the database connection file
ReplyDeleteits not working
ReplyDeleteHello Bro,
ReplyDeleteCan I have a video link? On youtube I cannot view.
Hello, could I have a video for this system?
ReplyDeleteHi Demo Link is not working
ReplyDeletewhich php version is used in this project?
ReplyDelete