Posts

Showing posts from February, 2022

How to insert view update and delete data using PHP and MySQL step by step with Graphics

 How to insert view update and delete data using PHP and MySQL step by step with Graphics Step 1 : create table in mySQl using query CREATE TABLE `users` (   `userid` text NOT NULL,   `name` text DEFAULT NULL,   `password` text DEFAULT NULL,   `email` text DEFAULT NULL,   `mobile` text DEFAULT NULL,   `address` text DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; step 2: create a configuration file to connect mysql database with the php  <?php session_start(); $con = mysqli_connect('localhost','root'); mysqli_select_db($con,'fyp'); if(mysqli_connect_error()) {     die("DB Connection Failed"); } ?> Step 3: Create from for insert operation name as AddUsers.php and paste the code  <?php include 'config.php';?> <?php  if(isset($_POST['done'])) { if(!empty($_POST))  {     if(!empty($_POST['userid'])&& !empty($_POST['password'])) {           $userid = $_POST['user...