HTML

active and deactive in php

How to Make Active or Inactive in PHP With Mysql Database

challan payment

How to Make Fees Receipt in PHP Using Mysql Database

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> &nbsp &nbsp &nbsp  <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" 
How to Create Dynamic Dependent select box using ajax

How to Create Dynamic Dependent select box using ajax

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 
for each loop

How to Print Div in PHP using For Loop

In this article, you will learn How to Print Div in PHP using For Looping.

<html>
<head>
<title>div's</title>
<style>
.ak{
	heigth:150px;
	width:50px;
	border:1px solid;
}
</style>
</head>
<body>
	<form method="POST">
		
			<h1 name="first"><?php
			for($i=0;$i<=5;$i++)
{
	

echo '<div class="ak">' .$i . '</div>'.'<br>' 
contact page in php

How to Create a mail System in PHP using HTML form

On any website have a contact page. The contact page has a form to fill and mail will deliver to the administrator. so in this article, you will learn How to Create a mail System in PHP using HTML form.…