Kunjungi web kami stickmypride.com
1. Tugas web yang telah dibuat
- Web yang dikerjakan : stickmypride.com
- Biaya web yang dikeluarkan
- Hosting Unlimited : Rp.394.800
- Domain "stickmypride".com : Rp 0- (gratis dari hostingnya)
Fitur-fitur yang ada pada web
Fitur web ini masih belum seberapa. berikut adalah tampilannya
1. Tampilan Awal
2. Fitur Login
3. Fitur Signup
4. Menampilkan Stiker Sesuai Kategori
2. Program untuk memonitoring praktikum
Untuk mengoneksikan php ke database buat koneksi.php <?php
$host='localhost';
$db='uts_pweb';
$user='root';
$pass='';
$conn=mysqli_connect($host,$user,$pass,$db);
if(!$conn) {
die("Gagal Koneksi: " . mysqli_connect_error());
}
else {
echo "Berhasil Konek";
}
?>
Selanjutnya buat untuk login.php
<!DOCTYPE html>
<html>
<head>
<title>Login</title>
</head>
<style>
.tabel{
background-color: salmon;
width: 20%;
margin: left;
}
</style>
<body>
<div class="tabel">
<form action="" method="post">
<table>
<tr>
<td>Username</td>
<td>:</td>
<td><input type="text" name="username"></input></td>
</tr>
<tr>
<td>Password</td>
<td>:</td>
<td><input type="text" name="password"></input></td>
</tr>
<tr>
<td></td><td></td>
<td>
<input type="submit" name="login" value="Login"></input>
</td>
</tr>
</table>
</form>
</div>
</body>
</html>
Selanjutnya untuk menampilkan data.php
Sekian untuk post kali ini, kurang lebihnya mohon maaf, Terima Kasih<?php include('koneksi.php'); $query = "SELECT * FROM mk"; $result = mysqli_query($conn,$query); $i = 1; echo "<h1>Daftar Mata Praktikum dan Jumlah Praktikan</h1>"; echo "<table border='1'> <tr> <th>kode_mk</th> <th>nama_mk</th> <th>jumlah_praktikan</th> </tr>"; if(mysqli_num_rows($result) > 0) { while($row = mysqli_fetch_assoc($result)) { echo "<tr> <td>".$row["kode_mk"]."</td> <td>".$row["nama_mk"]."</td> <td align='center'>".$row["jumlah_praktikan"]."</td> </tr>"; $i+=1; } echo "</table>"; } echo "<br>"; echo '<a href="tambah_data_mk.php"><input type="submit" value="Tambah Data MK">'; mysqli_close($conn); ?>
Tidak ada komentar:
Posting Komentar