Postingan

Menampilkan postingan dari Oktober, 2018

Form Pendaftaran Prestasi

Gambar
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...

Database

Gambar
Membuat Database Pendaftaran Mahasiswa Baru Tugas Pemrograman Web Kelas C Kali ini saya akan membuat database pendaftaran mahasiswa baru menggunakan php dan mysql. Berikut source code dan tampilan akhirnya : 1. Source code config.php <?php $server = "yukiyr.cucicuciku.com"; $user = "cucicuc1_yukiyr"; $password = "cucicuci11"; $nama_database = "cucicuc1_pendaftaran_siswa"; $db = mysqli_connect($server, $user, $password, $nama_database); if( !$db ){ die("Gagal terhubung dengan database: " . mysqli_connect_error()); } ?> 2. Source code index.php <!DOCTYPE html> <html> <head> <title>Pendaftaran Mahasiswa Baru | Institut Teknologi Sepuluh Nopember</title> <style type="text/css"> #topbar { background-color: #7A0000; width: 100%; height: 100px; color: white; } h4 { color: #...

Parkir Online

Gambar
Ulangan Tengah Semester (UTS) Pemrograman Berbasis Objek Kelas A Kali ini saya akan membuat program pembayaran parkir secara online. Pembayaran parkir secara online dilakukan dengan kartu. Tiap kendaraan akan dibuatkan ID akun masing-masing sehingga pembayaran dilakukan dengan memasukkan ID akun bukan plat nomor karena saya pikir memasukkan angka saja akan lebih mudah untuk diingat daripada memasukkan campuran huruf dan angka yang susah diingat. Jadi ID yang harus dimasukkan adalah ID yang sudah terdaftar. Disini saya membutuhkan 6 class disini yaitu, Keypad, PO, POStudyCase, Account, Screen, dan EMoneyDatabase. Berikut source code tiap kelasnya dan tampilan akhirnya : 1. Source Code Keypad Berfungsi sebagai method untuk mengambil input dari user. import java.util.Scanner; /** * Write a description of class KeyPad here. * * @author Yuki Y.R. * @version 15/10/2018 */ public class Keypad { private Scanner input; public Keypad() ...

Form Dengan PHP

Gambar
Tugas Pemrograman Web Membuat Form Dengan PHP Kali ini saya akan membahas tentang bagaimana cara membuat form pembayaran rekening air dengan menggunakan PHP. Berikut source code dan tampilan akhirnya. 1. Source Code <!DOCTYPE html> <html> <head> <title>Pembayaran Rekening Air</title> </head> <style type="text/css"> body{ margin-top: 30px; font-family: arial; background: #cfcfcf; } #ins{ height: 25px; width: 300px; font-weight: bold; font-size: 14px; border: solid #937 1px; } #in{ height: 25px; width: 50px; font-weight: bold; font-size: 14px; border: solid #937 1px; } #sel{ height: 25px; width: 100px; font-weight: bold; font-size:...

Eliza

Gambar
Tugas Pemrograman Berbasis Objek Eliza Kali ini saya akan membahas tentang aplikasi Eliza, dimana kita dapat bercakap-cakap dan mendapat jawaban dari perbincangan kita. Saya membutuhkan 3 class yaitu, SupportSystem, Responder, dan InputReader. 1. Source Code SupportSystem /** * This class implements a technical support system. It is * the top-level class in this project. The support sytem * communicates via text input/output in the text terminal. * This class uses an object of class InputReader to read * input from the user and an project of class Responder to * generate responses. * It contains a loop that repeatedly reads input and * generates output until the user wants to leave * * @author Yuki Yanuar Ratna * @version 0.1(08/10/2018) */ public class SupportSystem { private InputReader reader; private Responder responder; /** * Creates a technical support system */ public Supp...

Auction

Gambar
Tugas Pemrograman Berbasis Objek (PBO) Membuat Sistem Lelang Kali ini saya akan membuat suatu sistem lelang menggunakan BlueJ. Berikut source code dan tampilan akhirnya. Saya membutuhkan lima class dalam hal ini, yaitu Auction, Bid, Lot, Person, dan Auction Test. 1. Source Code Auction import java.util.ArrayList; /** * A simple model of an auction *The auction mantains a list of lots of arbitatry length * @author Yuki Yanuar Ratna * @version 2018.10.04 */ public class Auction { //The list of Lots in this auction private ArrayList<Lot> lots; //The number that will be given to the next lot entered private int nextLotNumber; /** * Create a new auction */ public Auction() { lots = new ArrayList<Lot>(); nextLotNumber = 1; } /** * Enter a new lot into the auction * @param description A description of the lot */ public void enterLot(String des...