Core PHP

Top 10 PHP Frameworks for Web Development

Looking for the best PHP framework according to your convenience? Well, the PHP framework is the most commonly used programming language by developers for application or website development works. It has become a necessity to create and maintain a website …

dbms

How to Manage Mysql Database Users Using PHP

In this article, we will explain How to Manage Mysql Database Users Using PHP.
In MySQL, you can create user accounts with different privileges.

Root User

By default, MySQL has a superuser we called root this user has all …

how to connect database in php

How to Insert Data into Mysql Database using PHP

In this tutorial, we will explain How to insert data into Mysql database using PHP. If you want to save the record in one place then insert the data into the database.

Below Steps:

index.php

<form method="post" action="insert.php" enctype="multipart/form-data">
how to connect database in php

How to Fetch Data From Mysql Database using PHP

How to Fetch Data From Mysql Database using PHP, from inserted data in Mysql database.

HTML Code

<div class="table">
	<div class="tab1"><h1>Name</h1></div>
    <div class="tab1"><h1>Father name</h1></div>
    <div class="tab1"><h1>Mother name</h1></div>
    <div class="tab1"><h1>E-mail</h1></div>
    <div class="tab1"><h1>Address</h1></div>
    <div class="tab1"><h1>DOB</h1></div>
    <div class="tab1"><h1>Category</h1></div>
    <div class="tab1"><h1>Image</h1></div>
    <div class="tab1"><h1>Action</h1></div>
    <div 
delete all data from table mysql

How to Delete Data From Mysql Database

In this tutorial, we will explain how to Delete Data from Mysql database which is already inserted in the database using PHP.

table.php

<?php
include(db.php);
?>
<html>
<head>
<title>Table</title>
</head>
<body>
<div class="table">
	<div class="tab1"><h1>Name</h1></div>
    <div class="tab1"><h1>Father name</h1></div>
    <div class="tab1"><h1>Mother