UTS PWeb
Nama: Donny Fitrado NRP: 05111740000171 Kelas: PWeb C Kali ini, saya akan membagikan hasil UTS PWeb saya yaitu membuat E-Rapor untuk prestasi siswa. Berikut ini adalah source codenya: 1. config.php <?php $server = "localhost"; $user = "root"; $password = ""; $nama_database = "pendaftaran_siswa"; $db = mysqli_connect($server, $user, $password, $nama_database); if( !$db ){ die("Gagal terhubung dengan database: " . mysqli_connect_error()); } ?> 2. index.php <!DOCTYPE html> <html> <head> <title>E-Rapor Siswa | SMAS Cita Hati</title> </head> <body> <header> <h3>Pendaftaran Prestasi</h3> <h1>SMAS Cita Hati</h1> </header> <h4>Menu</h4> <nav> <?php if(isset($_GET['status'])): ?> <p> <?php if($_G...