Friday, April 1, 2016

UTS PWEB

SOAL 1

Link : http://kathotel.com

Biaya yang dikeluarkan sekitar Rp396.000 untuk domain dan hosting

Langkah-langkah mengerjakan :
1. membuat database di localhost, atau langsung di phpmyadmin dari cpanel


2. membuat interfacenya lewat localhost


3. memasukkan data interface localhost melalui cpanel
  -buka cpanel lalu cari bagian File

-pilih upload untuk upload file localhost 



-lalu bisa dibuka melalui domain



Fitur yang tersedia

1.Mencari hotel,apartemen,dan homestay yang tersedia berdasarkan kategori dan tanggal check in check outnya (database masih dalam proses)


2.Login member area (database masih dalam proses)

3.Contact us beserta map



SOAL 2

1) config.php

<?php
 
$dbhost = 'localhost'; 
$dbuser = 'root';     // ini berlaku di xampp
$dbpass = '';         // ini berlaku di xampp
$dbname = 'utspweb';
 
// melakukan koneksi ke database
$connect = new mysqli($dbhost,$dbuser,$dbpass,$dbname);
 
// cek koneksi yang kita lakukan berhasil atau tidak
if ($connect->connect_error) {
   // jika terjadi error, matikan proses dengan die() atau exit();
   die('Maaf koneksi gagal: '. $connect->connect_error);
}
?>


2) login.php
<pre><code>?php  
  include 'configi.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>UTS Pweb</title>  
   <!-- Bootstrap -->  
     <link href="css/bootstrap.min.css" rel="stylesheet">  
  </head>  
 <div class="col-sm-3" padding-top:10px">  
   <form action="login_auth.php" method="POST">  
 <div class="contact-bottom">  
     <label>Username : </label>  
     <input name="nama_user" type="text" placeholder="Username" />  
     <label>Password : </label>  
     <input name="password_user" type="password" placeholder="Password" />  
 <div class="submit-btn">  
      <input type="Submit" value="Login">  
 </div>  
 </div>  
   </form>  
 </div>  
 <!-- 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></code></pre>  







3) tampilkandata.php


 <pre><code><?php   
  include'config.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>Data Mata Praktikum dan Jumlah Praktikan</h1>  
 ';  
 if($resultc = $connect->query("SELECT * FROM `praktikum`")){  
         while($rowc = $resultc->fetch_assoc()) {  
            echo '  
 <tr>';  
             echo '  
 <td>', $i++,'</td>  
 ';  
             echo '  
 <td>', $rowc['kode_mk'],'</td>  
 ';  
             echo '  
 <td>', $rowc['nama_mk'],'</td>  
 ';  
             echo '  
 <td>', $rowc['jumlah_praktikum'],'</td>  
 ';  
           echo '</tr>  
 ';  
           }  
         $resultc->free();  
 }  
 echo '</tbody>  
 </table>  
 ';  
 echo '  
 <div style="text-align:center"><button > Tambah Data MK</button></div>  
 ';  
 ?></code></pre>  

























No comments:

Post a Comment

Fractal Tree