Max And Min Salary Of Employees With Employee Name In MySql

Max And Min Salary Of Employees With Employee Name In MySql

Here we write a SQL Query for retrieve Max and Min salary with employees name in MySql. First we create a sample table with data. — — Table structure for table `employees` — CREATE TABLE `employees` ( `employee_id` int(11) NOT NULL, `employee_name` varchar(100) NOT NULL, `salary` int(11) NOT NULL, `department` varchar(50) NOT NULL ) ENGINE=InnoDB …

Max And Min Salary Of Employees With Employee Name In MySql Read More »

PHP Import Excel File Data Into MySql Database Using PHPExcel Library

PHP Import Excel File Data Into MySql Database Using PHPExcel Library

In this post, we will show you how you can import Excel file data to MySql Database using PHPExcel Library. Nowadays, in web development data import is an important functionality and most of the website user wants that his spreadsheet data stores in database with more manageable form. For achieve this result we are using …

PHP Import Excel File Data Into MySql Database Using PHPExcel Library Read More »

Check Uncheck All Checkboxes in Html Using JavaScript

Check Uncheck All Checkboxes in Html Using JavaScript

Check and Uncheck all checkboxes by one checkbox is very important and common functionality in website development. Here we show you how you can checked and unchecked all checkboxes. The code below will demonstrate Check and Uncheck All checkboxes by single checkbox. Check Uncheck All Checkboxes in Html Using JavaScript Language PHP JAVA C C++ …

Check Uncheck All Checkboxes in Html Using JavaScript Read More »

Auto Suggestion Textbox Using Bootstrap PHP MySql Ajax JQuery

Auto Suggestion Textbox Using Bootstrap PHP MySql Ajax JQuery

Auto Suggestion(Auto Complete) Textbox Using Bootstrap PHP MySql Ajax And jQuery Auto Suggestion (Auto Complete) textbox is important functionality for any website. Here we show you how without using any JQuery Auto complete Plugin you can able to create Auto Suggestion functionality in textbox. Here we are using Ajax, JQuery,Php Mysql and Bootstrap. Let’s Start …

Auto Suggestion Textbox Using Bootstrap PHP MySql Ajax JQuery Read More »

Dependent Drop Down using Bootstrap PHP MySqli Ajax jQuery

Dependent Drop Down using Bootstrap PHP MySqli Ajax jQuery

Dependent Drop Down using Bootstrap, PHP, MySqli, Ajax, jQuery We will create a dynamic dependent drop down using jQuery, Ajax,MySqli and PHP. This functionality is used to automatically add dependent data to a drop down list. This is a very common functionality that is used in Websites. According to the drop-down selection, the dependent data …

Dependent Drop Down using Bootstrap PHP MySqli Ajax jQuery Read More »

Reorder Bootstrap table rows with help of JQuery-Ajax-PHP-MySql

Reorder Bootstrap table rows with help of JQuery-Ajax-PHP-MySql

Reorder Bootstrap table rows with help of JQuery,Ajax,PHP and MySql Reorder table Rows is a important task. We will create an example with bootstrap.Where we can reorder rows and save into Database Table. First Create table In Database(MySql) and Save some records.Use Below query to create a table in Database with some records. — — …

Reorder Bootstrap table rows with help of JQuery-Ajax-PHP-MySql Read More »