This article, you will learn How to Import Data in PHP using Mysql Database.index.php<html> Mhead> <title>Import Data in PHP</title> </head> <body> <form action="import.php" method="post" name="upload_excel" enctype="multipart/form-data"> <fieldset> <legend>Import CSV/Excel file</legend> <div class="control-group"> <div class="control-label"> <label>CSV/Excel File:</label> </div> <div …
This article, you will learn How to Import Data in PHP using Mysql Database.
index.php
<html> Mhead> <title>Import Data in PHP</title> </head> <body> <form action="import.php" method="post" name="upload_excel" enctype="multipart/form-data"> <fieldset> <legend>Import CSV/Excel file</legend> <div class="control-group"> <div class="control-label"> <label>CSV/Excel File:</label> </div> <div
In this article, you will learn How to Make Fees Receipt in PHP Using Mysql Database.index.php<html> <title>Add fees</title> </head> <body> <h1><a href="add.php">Add receipt</a>       <a href="search.php">Record</a></h1> <form method="POST" oninput="x.value=parseInt(a.value)+parseInt(b.value)+parseInt(c.value)" action="fees.php"> <input type="date" name="date"><br/><br/> Name <input type="text" …
In this article, you will learn How to Make Fees Receipt in PHP Using Mysql Database.
<html> <title>Add fees</title> </head> <body> <h1><a href="add.php">Add receipt</a>       <a href="search.php">Record</a></h1> <form method="POST" oninput="x.value=parseInt(a.value)+parseInt(b.value)+parseInt(c.value)" action="fees.php"> <input type="date" name="date"><br/><br/> Name <input type="text"
after login, we need to fetch Username. We will explain How to Fetch Logged in Username.index.php<?php include("db.php"); session_start(); if($_SESSION['username']=="") { session_destroy(); header("location:index.php"); } ?> <html> <head> <title>Fetch Loged in Username</title> </head> </body> <?php include('db.php'); $query="select * from user …
after login, we need to fetch Username. We will explain How to Fetch Logged in Username.
<?php include("db.php"); session_start(); if($_SESSION['username']=="") { session_destroy(); header("location:index.php"); } ?> <html> <head> <title>Fetch Loged in Username</title> </head> </body> <?php include('db.php'); $query="select * from user
You need a dynamic dependent select box. We will explain how to create a dynamic dependent select box in PHP, jquery and ajax.index.php<?php include_once 'dbconfig.php'; ?> <html> <head> <title>Dynamic Dependent Select Box using Ajax</title> <script type="text/javascript" src="jquery-1.4.1.min.js"></script> <script …
You need a dynamic dependent select box. We will explain how to create a dynamic dependent select box in PHP, jquery and ajax.
<?php include_once 'dbconfig.php'; ?> <html> <head> <title>Dynamic Dependent Select Box using Ajax</title> <script type="text/javascript" src="jquery-1.4.1.min.js"></script> <script
In this article will explain How to Create Database and tables in MySql.Create a DatabaseCREATE DATABASE DATABASE_NAME;In MySql, if you want to display a list of all databases to run the below query.SHOW DATABASES;Create Tables:…
In this article will explain How to Create Database and tables in MySql.
Create a Database
CREATE DATABASE DATABASE_NAME;
In MySql, if you want to display a list of all databases to run the below query.
SHOW DATABASES;
Create Tables:…