-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcoba.php
More file actions
21 lines (19 loc) · 723 Bytes
/
coba.php
File metadata and controls
21 lines (19 loc) · 723 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<?php
if(isset($_POST['simpan'])){
$idmhs = $_POST['id_mahasiswaUbah'];
$nim = $_POST['nimUbah'];
$nama = $_POST['nama_mahasiswaUbah'];
$tempat = $_POST['tempat_lahirUbah'];
$tanggal = $_POST['tanggal_lahirUbah'];
$fakultas = $_POST['fakultas_idUbah'];
$jurusan = $_POST['jurusan_idUbah'];
$ipk = $_POST['ipkUbah'];
echo "<strong>ID:</strong> {$idmhs} <br>";
echo "<strong>NIM:</strong> {$nim} <br>";
echo "<strong>Nama:</strong> {$nama} <br>";
echo "<strong>TTL:</strong> {$tempat}, ";
echo "{$tanggal} <br>";
echo "<strong>Fakultas:</strong> {$fakultas} <br>";
echo "<strong>Jurusan:</strong> {$jurusan} <br>";
echo "<strong>IPK:</strong> {$ipk} <br>";
}