Postingan

ETS

Gambar
Nama : Yusran Hadi NRP : 05111740000105 Kelas : Pweb C Source code index.php source code form-daftar.php source code form-edit.php source code proses-edit.php source code proses-pendaftaran.php source code prestasi-edit.php source code prestasi.php source code hapus-data.php source code config.php source code list-siswa.php screenshot

TUGAS KELAS PWEB MYSQL

Gambar
Nama : Yusran Hadi NRP   : 05111740000105 Kelas : 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()); } ?> Source Code index.php <!DOCTYPE html> <html> <head> <title>Pendaftaran Siswa Baru | SMK Coding</title> </head> <body> <header> <h3>Pendaftaran Siswa Baru</h3> <h1>SMK Coding</h1> </header> <h4>Menu</h4> <nav> <ul> <li><a href="form-daftar.php">Daftar Baru</a></li> <li><a href="list-siswa.php">Pendaftar</a></li> </ul> </nav> ...

Form Pembayaran

Gambar
Nama : Yusran Hadi NRP : 05111740000105 Kelas : PWEB C  Disini saya akan menyampaikan source code dan hasil dari tugas pembuatan form pembayaran listrik, beserta dengan bukti pembayarannya. 1. Source Code     index.html <html> <head> <title>Pembayaran</title> <link rel="stylesheet" href="desain.css" media="screen"> </head> <body> <script type="text/javascript"> function validasi_input(form){ if (form.nama.value.length > 50 && form.nama.value.length !=0){ alert("Nama maksimal 50 Karater!"); form.nama.focus(); return (false); } else if (form.nama.value == ""){ alert("Harap isi data dengan lengkap!"); form.nama.foc...

Tugas 6 - membuat Form Registrasi

Gambar
Nama : Yusran Hadi Kelas : Pweb C NRP : 05111740000105 source code: CSS code:

Tugas PWeb : Laman Berita

Gambar
Kali ini saya membuat laman berita menggunakan HTML dan CSS. sumber berita saya ambil dari detik.com dan kompas.com Berikut tampilannya berikut juga saya sertakan source kode dari HTML dan CSS Source Code HTML   Source Code CSS   Nama : Yusran Hadi NRP : 05111740000105 kelas : Pemrograman Web

Latihan Membuat Web dengan HTML dan CSS

Gambar
TUGAS 4 - Pemrograman Web  Nama : Yusran Hadi  NRP : 05111740000105  Kelas : Pemrograman Web C  1. Source Code HTML 2. Source Code CSS 3. tampilan

Tugas 1 - Pemrograman Web Kelas C 2018

Gambar
Nama      :   Yusran Hadi NRP        :   05111740000105 Kelas       :  Pemrograman Web C Membuat CV berbasis HTML dan CSS. Saya juga menggunakan JavaScript untuk membuat beberapa fitur. Berikut saya Source Code dari CV saya. 1. Source Code HTML <!DOCTYPE html> <html lang="en"> <head>     <title>Yusran Hadi</title>     <link rel="stylesheet" href="desain.css"/>     <style>         ul {             list-style-type: none;             margin: 0;             padding: 0;             overflow: hidden;             background-color: #333;             position: -webkit-sticky;             position: sticky; ...