SEARCH RECORD FROM DATABASE BY PHP ON WEBPAGE 1. SEARCH RECORD (search.php) <!DOCTYPE html> <html lang="en"> <head> <title>Search Example</title> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <link…
Read moreDELETE RECORD FROM DATABASE BY PHP ON WEBPAGE 1. DELETE RECORD (delete.php ) <?php include_once 'database.php'; $result = mysqli_query($con,"SELECT * FROM emp"); ?> <!DOCTYPE html> <html> <head> <link rel="stylesheet" href="style.css"> <title>Del…
Read moreUPDATE RECORD INTO DATABASE BY PHP FROM WEBPAGE 1. UPDATE RECORD (update.php ) <?php include_once 'database.php'; $result = mysqli_query($con,"SELECT * FROM emp"); ?> <!DOCTYPE html> <html> <head> <title> Retrive data</title> <link rel="stylesheet" href="style.css"…
Read moreINSERT RECORD INTO DATABASE BY PHP IN WEBPAGE 1. INSERT RECORD ( insert.php ) <!DOCTYPE html> <html> <body> <form method="post" action="insert1.php"> Employ ID:<br> <input type="text" name="eid"> …
Read moreDISPLAY DATA FROM DATABASE TABLE BY PHP DISPLAY DATA FROM EMP TABLE ( retrieve.php) <?php include_once 'database.php'; $result = mysqli_query($con,"SELECT * FROM emp"); ?> <!DOCTYPE html> <html> <head> <title> Retrive data</title> <link rel="stylesheet" href…
Read more
Social Plugin