Form Pendaftaran Prestasi
Form Pendaftaran Prestasi Siswa Ulangan Tengah Semester Kali ini saya akan membuat form pendaftaran prestasi siswa menggunakan php dan MySQL. Berikut source code dan tampilan akhirnya : 1. Source code config1.php <?php $server = "yryuki.cucicuciku.com"; $user = "cucicuc1_prestas"; $password = "cucicuci11"; $nama_database = "cucicuc1_prestasi_siswa"; $db = mysqli_connect($server, $user, $password, $nama_database); if( !$db ){ die("Gagal terhubung dengan database: " . mysqli_connect_error()); } ?> 2. Source code index1.php <!DOCTYPE html> <html> <head> <title>Pendaftaran Prestasi Siswa | SMA Negeri 1 Bojonegoro</title> <style type="text/css"> #topbar { background-color: #7A0000; width: 100%; height: 100px; color: white; } h4 { color: #7A0000; } li { colo...