Category «PHP»

How to make Dependent dropdowns

We can make a dependent dropdown using the jQuery and ajax technique. We will create a level 5 Dropdown using Jquery. We will fetch data from the database without refreshing the page. We have designed a database with four tables. We have four tables in the DATABSE . You can download the source code from …

How to show Database records in PIE Chart using PHP JQUERY

Today we will see how to make a pie chart of graph design in PHP and javascript. We will use canvas.js for graph design. Make a table in the database:- Table name military_table  (id, countrye_name, country_budget) Now make a page index.php <?php $conn = mysqli_connect(‘localhost’,’root’,”,’test’); $sql = “SELECT country_name,country_budget FROM military_budget”; $result = mysqli_query($conn, $sql); …

How to make a dependent dropdown in Jquery Php

We can make a dependent dropdown using Jquery and PHP. We will level two drop-down in jquery and PHP. We will use select tag of HTML for dropdown <select><option></option></select> Now create database in PHPMyAdmin or MySQL workbench. Now make four columns in the database table ( student )  :- id ,name,age,phone Now create a page …

How to make a Bill Receipt Software in PHP

We can make a bill payment system in PHP using Jquery and Bootstrap. We can make any type of restaurant’s bill payment system using PHP.How to make a Bill Receipt Software in PHP. Learn about PHP from its Official Website :https://www.php.net/ How to make a dependent Dropdown in Laravel : Dropdown in Laravel We can …

How to load EXCEL Data in Browser in PHP

PhpSpreadsheet is a library written in pure PHP and offers a set of classes that allow you to read and write various spreadsheet file formats such as Excel and LibreOffice Calc. Installation Use composer to install PhpSpreadsheet into your project: composer require phpoffice/phpspreadsheet Download Source Code of the Project:- Php Spreadsheet project  So first we will create …

How to Implement Custom Captcha in PHP

PHP tutorial for beginners and professionals provides in-depth knowledge of PHP scripting language. Our PHP tutorial will help you to learn PHP scripting language easily. This PHP tutorial covers all the topics of PHP such as introduction, control statements, functions, array, string, file handling, form handling, regular expression, date and time, object-oriented programming in PHP, …