<?php
//extract all info from id
$empno=$_GET['id'];
//develop the SQL command to delete record
if($empno!=''){
$sql="delete from employee
where EMPNO='$empno'";
//database connection
$db=mysqli_connect("localhost","root","","mycompanyhr");
// checking database connection
if ($db==false) {
echo "Connect failed: ". mysqli_connect_error($db);
exit();
}
else {
echo "Connection successful";
}
//execute the SQL command
$rs=mysqli_query($db,$sql);
//check the execution status
if($rs==false){
echo "Record cannot be deleted!<br>";
echo "SQL Error : ".mysqli_error($db);
}
else{
echo "<br>Record for $empno deleted!<br>";
echo "<a href='simple-search.php'>
Back to the list</a>";
}
}//end NULL
?>
Create your own blog and send the address by submitting the comment of this article. Make sure to provide your full name, matrix and URL address of your blog. Refer to the picture below. Manual on developing a blog using blogger.com and AdSense, download here … Download Windows Live Writer (a superb offline blog post editor)
Comments
Post a Comment