Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.

123

Tuesday, November 27, 2018

What is session in php? how can use the php session?

What is Session:- A php Session variable  is stored the single user information and are available all the page in the application.A PHP session solves this problem by allowing you to store single user informations on the server at a time.session information is the temporary store on the server,you are left the site then will be deleted.Session...

Thursday, November 22, 2018

How to delete data from database using MVC?

Delete data from database using MVC You can easily delete the records from database. In this below example we have used three php files 1. View.php <?php include("controller.php"); //delete the data  if(isset($_REQUEST['del_id']))  {    $del=$_REQUEST['del_id'];    $obj->delete($del);    header("location:view.php"); } ?> <html > <head> <title>Delete the data</title> </head> <body> <form...

How to update multiple table in MySQL?

Update multiple table with join in MYSQL <?php      $sql = "UPDATE table1                  JOIN table2 VCR ON  (table1.contact_id = table2.contact_id)                 SET table1.email_status = 1,                 table2.review_status = 1                 WHERE...

Image upload by ajax in php

AJAX Image upload in php It's very simple process to image upload by AJAX . It's working fine. You can easily upload the image by AJAX. Follow the below step. Code download  Click Here 1. Create a simple .php or .html file. We have created index.php file look below <html> <head>  <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script> </head> <body> <div><b>Upload...