Aplikasi Sederhana Input Data mahasiswa-WPS Office
Aplikasi Sederhana Input Data mahasiswa-WPS Office
Aplikasi Sederhana Input Data mahasiswa-WPS Office
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Data Mahasiswa</title>
</head>
<body>
<h1>Data Mahasiswa</h1>
<label for="nama">Nama:</label>
<label for="nim">NIM:</label>
</form>
<h2>Daftar Mahasiswa</h2>
<ul>
<?php include 'display.php'; ?>
</ul>
</body>
</html>
body {
margin: 20px;
form {
margin-bottom: 20px;
label {
display: block;
margin-bottom: 5px;
button {
cursor: pointer;
ul {
list-style-type: none;
padding: 0;
li {
margin-bottom: 10px;
<?php
$servername = "localhost";
$username = "root";
$password = "";
$dbname = "database_mahasiswa";
if ($conn->connect_error) {
if ($_SERVER["REQUEST_METHOD"] == "POST") {
$nama = $_POST["nama"];
$nim = $_POST["nim"];
} else {
$conn->close();
?>