SOAL 1
Berdasarkan tugas pembuatan web di domain komersial yang telah dilakukan,
SOAL 2
Membuat program pendek untuk monitoring praktikum
Berikut ini adalah kodingan dari login.php
Berikut ini adalah kodingan dari tampilkandata.php
Berdasarkan tugas pembuatan web di domain komersial yang telah dilakukan,
- Web: http://kathotel.com
- Biaya pembuatan web sebesar Rp 396.000
Web ini merupakan web untuk reservasi hotel, apartemen atau guesthouse. Langkah - langkah pengerjaan:
- Membuat database di localhost/phpmyadmin
- Mengisi data pada setiap table
Contoh data pada beberapa table:Table Admin
Table Hotel
Table User - Membuat query yang perlu ditampilkan pada web
Contoh: Menampilkan nama hotel yang available
Screenshot tampilan web:
Homepage
"What's Hot" page
"Contact Us" page
SOAL 2
Membuat program pendek untuk monitoring praktikum
Table User
Table MK
Halaman login.php
Berikut ini adalah kodingan dari login.php
- <?php
- include'koneksi.php';
- ?>
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="utf-8">
- <meta http-equiv="X-UA-Compatible" content="IE=edge">
- <meta name="viewport" content="width=device-width, initial-scale=1">
- <!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
- <title>Bootstrap 101 Template</title>
- <!-- Bootstrap -->
- <link href="css/bootstrap.min.css" rel="stylesheet">
- </head>
- <body>
- <div class="col-sm-3" style="background-color:green; padding-top:10px">
- <form action="login_user.php" method="POST">
- <div class="contact-bottom">
- <label>Username : </label>
- <input name="email_user" type="text" placeholder="Email" />
- <br>
- <label>Password : </label>
- <input name="pass_user" type="password" placeholder="Password" />
- <div class="submit-btn">
- <input type="Submit" value="Login">
- </div>
- </div>
- </form>
- </div>
- <!--test -->
- <!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
- <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
- <!-- Include all compiled plugins (below), or include individual files as needed -->
- <script src="js/bootstrap.min.js"></script>
- </body>
- </html>
Halaman tampilkandata.php
Berikut ini adalah kodingan dari tampilkandata.php
- <?php
- include'koneksi.php';
- $i=1;
- echo '<table border="1" style="background-color:yellow"><thead><td>
- No. </td><td>Kode</td><td>Mata Praktikum</td><td> Jumlah Praktikan</td></thead><tbody>';
- echo '<h1>Daftar Mata Praktikum dan Jumlah Praktikan</h1>';
- if($resultc = $conn->query("SELECT * FROM `data_mk`")){
- while($rowc = $resultc->fetch_assoc()) {
- echo '<tr>';
- echo '<td>', $i++,'</td>';
- echo '<td>', $rowc['Kode'],'</td>';
- echo '<td>', $rowc['Mata Praktikum'],'</td>';
- echo '<td>', $rowc['Jumlah Praktikan'],'</td>';
- echo '</tr>';
- }
- $resultc->free();
- }
- echo '</tbody></table>';
- echo '<div style="text-align:left"><button > Tambah Data MK</button></div>';
- ?>
- <?php
- $DBServer = 'localhost';
- $DBUser = 'root';
- $DBPass = '';
- $DBName = 'user';
- $conn = new mysqli($DBServer, $DBUser, $DBPass, $DBName);
- if ($conn->connect_error) {
- trigger_error('CONNECTION FAILED' . $conn->connect_error, E_USER_ERROR);
- }
- else
- echo 'CONNECTED SUCCESSFULLY';
- ?>
Komentar
Posting Komentar