Monday 4 July 2016

Delete command for Php login form

Delete command for Php login form


<?php

$con=mysqli_connect('localhost','root','','deepak');

$de=$_GET['id'];

$del="delete from login where id='$de'";

mysqli_query($con,$del);

header('location:show.php');

?>


No comments:

Post a Comment