Bootstrap
Arini Indah Nur Fuadah 05111740007003 PWEB C Source Code 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()); } ?> index.html <!DOCTYPE html> <html> <head> <link href="css/bootstrap.min.css" rel="stylesheet"></link> <link href="css/bootstrap.css" rel="stylesheet"></link> <script> function loadsiswa() { var xhttp; if (window.XMLHttpRequest) { xhttp = new XMLHttpRequest(); } else { xhttp = new ActiveXObject("Microsoft.XMLHTTP"); } xhttp.onreadystatechange =...