• Tidak ada hasil yang ditemukan

Sistem Pencarian Rumus Matematika Tingkat SLTA Berbasis Web

N/A
N/A
Protected

Academic year: 2017

Membagikan "Sistem Pencarian Rumus Matematika Tingkat SLTA Berbasis Web"

Copied!
22
0
0

Teks penuh

(1)

SURAT KETERANGAN Hasil Uji Program Tugas Akhir

Yang bertanda tangan dibawah ini, menerangkan bahwa Tugas Akhir Mahasiswa

Program Diploma 3 Teknik Informatika :

Nama : BETTY PURBA

NIM : 132406095

Program Studi : D3 Teknik Informatika

Judul TA : Sistem Pencarian Rumus Matematika Tingkat SLTA

Berbasis Web

Telah melaksanakan test program Tugas Akhir Mahasiswa tersebut diatas

tanggal...Juni 2016

Dengan Hasil : Sukses / Gagal

Demikian diterangkan untuk digunakan melengkapi syarat pendaftaran Ujian Meja

Hijau Tugas Akhir Mahasiswa bersangkutan di Departemen Matematika FMIPA USU

Medan.

Medan, Juni 2016 Dosen Pembimbing

(2)
(3)

Header.php

<header id="header">

<div class="wrapper-logo"> <div class="logo">

<img src="images/header3.png"> </div>

</a> </div>

<div class="log-reg"> <ul>

<h3><a href="index.php">logout</a></h3></ul> </div>

<div class="search">

<form action="" method="get">

<input id="cari" type="text"

name="search" placeholder="Cari rumus">

<input type="submit" name="submit" value="Search">

</form> </div> </header>

Nav.php

<nav id="nav"> <ul>

<li><a class="active" href="home.php">Home</a></li>

<li><a href="rumus.php">Rumus</a></li>

<li><a href="soal_matematika.html">Simulasi Soal</a></li>

<li><a href="about.php">Tokoh Matematika</a></li> <li><a href="me.php">About E-Math</a></li>

</ul>

<p class="clear"></p> </nav>

(4)

<div class="teks-berjalan">

<h3><marquee>Sistem pencarian rumus matematika tingkat SLTA berbasis web</marquee></h3>

</div> <?php

if (isset($_GET['search'])) { $search = $_GET['search']; ?>

<section id="section"> <div class="content">

<div class="wrapper-barang"> <?php

$query = mysqli_query($kon, "SELECT * FROM formula WHERE ket LIKE '%$search%'");

$i = 1;

while ($row = mysqli_fetch_array($query)) { $gambar = $row['gambar'];

$ket = $row['ket']; ?>

<div class="barang"> <ul>

<li><a

href="tampil_rumus.php?ket=<?php echo $ket ?>&id=<?php echo $row['id']; ?>"><img src="images/rumus/<?php echo $gambar; ?>"></a></li>

<li class="nama"><?php echo $ket; ?></li>

</ul> </div>

<?php

if ($i % 3 == 0) {

echo '<div class="clear"></div>'; }

$i++; }

?> </div>

(5)

<div class="komentar-header"> <h3>Komentar</h3>

</div>

<div id="comment">

<form name="submitcomment" method="post" action="submitcomment.php">

Nama:<br><input name="nama" type="text"><br>

Email(optional):<br><input name="email" type="text"><br>

Komentar:<br><textarea

name="komentar" rows="6" cols="20"></textarea><br> <input name="art_id" value="1" type="hidden">

<input name="art_url" value="home.php" type="hidden"><br>

<input name="tombol" value="Kirim" type="submit"></form>

</div>

<div id="publishcomment">

<?php include("publishcomment.php"); getcomment("1"); ?>

</div> </div>

<div class="link">

<a href="rumus.php?ket=semua">Rumus lain</a> </div>

</div> </section> </section> <?php } else {

?>

<section id="section">

<div class="content">

<div class="wrapper-barang"> <?php

(6)

$i = 1;

while ($row = mysqli_fetch_array($query)) { $gambar = $row['gambar'];

$ket = $row['ket']; ?>

<div class="barang"> <ul>

<li><a

href="tampil_rumus.php?ket=<?php echo $ket ?>&id=<?php echo $row['id']; ?>"><img src="images/rumus/<?php echo $gambar; ?>"></a></li>

<li class="nama"><?php echo $ket; ?></li>

</ul> </div>

<?php

if ($i % 3 == 0) {

echo '<div class="clear"></div>'; }

$i++; }

?> </div>

<div class="komentar">

<div class="komentar-header"> <h3>Komentar</h3>

</div>

<div id="comment">

<form name="submitcomment" method="post" action="submitcomment.php">

Nama:<br><input name="nama" type="text"><br>

Email(optional):<br><input name="email" type="text"><br>

Komentar:<br><textarea

(7)

<input name="art_url" value="home.php" type="hidden"><br>

<input name="tombol" value="Kirim" type="submit"></form>

</div>

<div id="publishcomment">

<?php include("publishcomment.php"); getcomment("1"); ?>

</div> </div> </div>

</section> <?php }

?>

Section.php

<div class="teks-berjalan">

<h3><marquee>Sistem pencarian rumus matematika tingkat SLTA berbasis web</marquee></h3>

</div> <?php

if (isset($_GET['search'])) { $search = $_GET['search']; ?>

<section id="section"> <div class="content">

<div class="wrapper-barang"> <?php

$query = mysqli_query($kon, "SELECT * FROM formula WHERE ket LIKE '%$search%'");

$i = 1;

while ($row = mysqli_fetch_array($query)) { $gambar = $row['gambar'];

$ket = $row['ket']; ?>

(8)

<ul>

<li><a

href="tampil_rumus.php?ket=<?php echo $ket ?>&id=<?php echo $row['id']; ?>"><img src="images/rumus/<?php echo $gambar; ?>"></a></li>

<li class="nama"><?php echo $ket; ?></li>

</ul> </div>

<?php

if ($i % 3 == 0) {

echo '<div class="clear"></div>'; }

$i++; }

?> </div>

<div class="komentar">

<div class="komentar-header"> <h3>Komentar</h3>

</div>

<div id="comment">

<form name="submitcomment" method="post" action="submitcomment.php">

Nama:<br><input name="nama" type="text"><br>

Email(optional):<br><input name="email" type="text"><br>

Komentar:<br><textarea

name="komentar" rows="6" cols="20"></textarea><br> <input name="art_id" value="1" type="hidden">

<input name="art_url" value="home.php" type="hidden"><br>

<input name="tombol" value="Kirim" type="submit"></form>

</div>

(9)

<?php include("publishcomment.php"); getcomment("1"); ?>

</div> </div>

<div class="link">

<a href="rumus.php?ket=semua">Rumus lain</a> </div>

</div> </section> <?php } else {

?>

<section id="section">

<div class="content">

<div class="wrapper-barang"> <?php

$query = mysqli_query($kon, "SELECT * FROM formula LIMIT 6");

$i = 1;

while ($row = mysqli_fetch_array($query)) { $gambar = $row['gambar'];

$ket = $row['ket']; ?>

<div class="barang"> <ul>

<li><a

href="tampil_rumus.php?ket=<?php echo $ket ?>&id=<?php echo $row['id']; ?>"><img src="images/rumus/<?php echo $gambar; ?>"></a></li>

<li class="nama"><?php echo $ket; ?></li>

</ul> </div>

<?php

if ($i % 3 == 0) {

(10)

$i++; }

?> </div>

<div class="komentar">

<div class="komentar-header"> <h3>Komentar</h3>

</div>

<div id="comment">

<form name="submitcomment" method="post" action="submitcomment.php">

Nama:<br><input name="nama" type="text"><br>

Email(optional):<br><input name="email" type="text"><br>

Komentar:<br><textarea

name="komentar" rows="6" cols="20"></textarea><br> <input name="art_id" value="1" type="hidden">

<input name="art_url" value="home.php" type="hidden"><br>

<input name="tombol" value="Kirim" type="submit"></form>

</div>

<div id="publishcomment">

<?php include("publishcomment.php"); getcomment("1"); ?>

</div> </div>

<div class="link">

<a href="rumus.php?ket=semua">Rumus lain</a> </div>

</div>

<div class="content">

<!--<div class="kalender"> <tr>

<td width="40%" valign="top" align="center" > <?php

(11)

</div>--> </div>

</section> <?php }

?>

Footer.php

<footer id="footer">

<p>&copy; <?php echo date("Y"); ?> <a href="index.php">easymath.com</a> | All Right Reserved</p>

</footer>

Index.php

<html> <head>

<title>-Math | Halaman Utama</title>

<link rel="shortcut icon" href="images/icon.png" />

<style> * {

padding: 0; margin: 0; }

.container { width: 100%; }

#header {

width: 100%;

position: relative; height: 250px;

(12)

#header #logo { width: 570px;

position: absolute; left: 50%;

margin-left: -285px; top: 15px;

}

#header #logo img { width: 570px; height: 200px; }

#header .login {

position: absolute; right: 15px;

top: 15px; }

#header .login a {

text-decoration: none; display: block;

padding: 10px;

font: 1.5em 'Agency Fb'; color: #ccc;

transition: all ease .5s;

background: rgba(0, 0, 0, .5); transition: transform ease-in .2s; transform: skewX(-10deg);

}

#header .login a:hover { transform: skewX(0deg); }

#header .login a:hover { color: white;

background: #0f0f0f; }

#section {

width: 100%;

box-sizing: border-box; min-height: 200px;

box-shadow: 5px 5px 7px #0f0f0f; }

(13)

display: flex; width: 100%;

background-color:#e4edae; background-size: 100% 100%; padding: 15px;

box-sizing: border-box; }

#section .container-gambar .gambar { border: 1px solid white;

width: 100%;

box-sizing: border-box; border: 5px solid white; margin: 15px 100px;

boxshadow: 2px 2px 3px #1b6d85, 2px -2px 3px #1b6d85;

transition: all ease .5s; }

#section .container-gambar .gambar:hover { box-shadow: none;

transform: scale(1.2, 1.2) skew(2.5deg, 2.5deg);

}

#section .container-gambar .gambar img { width: 100%;

height: 200px; }

.text-center {

text-align: center; }

.label {

font: 1.5em 'Agency Fb'; }

#footer {

background: #447a13; clear: both;

height: 160px; padding: 15px;

box-shadow: 0px -2px 3px rgba(0, 0, 0, .5);

(14)

#footer p {

text-align: center;

font-family: 'Agency Fb'; color: white;

font-size: 1em; }

#footer a {

text-decoration: none; color: #ccc;

}

#footer a:hover { color: #f3f3f3; }

</style>

</head> <body>

<div class="container"> <header id="header">

<!-- <div class="login"> <a href="#">LOGIN</a> </div> -->

<div id="logo">

<img id="header-img" src="images/head3.png" >

</div> </header>

<section id="section">

<div class="container-gambar"> <div class="gambar">

<a href="home.php"><img src="images/home4.png"></a>

<div class="label text-center"> HOME

</div> </div>

<div class="gambar">

<a href="search.php"><img src="images/Search.png"></a>

(15)

CARI RUMUS </div>

</div>

<div class="gambar"> <a

href="soal_matematika.html"><img src="images/simulasi.png"></a>

<div class="label text-center"> SIMULASI

</div> </div> </div> </section>

<footer id="footer">

<p>&copy; <?php echo date("Y"); ?> <a href="index.php">easymath.com</a> | All Right

Reserved</p>

</footer> </div>

</body> </html>

Koneksi.php

<?php

session_start();

$kon = mysqli_connect("localhost", "root", "", "rumus"); if (!$kon) {

echo "Error ... " . mysqli_error($kon); }

?>

Home.php

<?php include 'database.php'; ?> <!DOCTYPE html>

<html> <head>

(16)

<link rel="shortcut icon" href="images/icon.png" />

<link href="css/bootstrap.css" rel="stylesheet" />

<link rel="stylesheet" href="css/style.css" /> </head>

<body>

<div class="container">

<?php include 'includes/header.php'; ?> <?php include 'includes/nav.php'; ?> <?php include 'includes/section.php'; ?> <?php include 'includes/footer.php'; ?> </div>

<script>

$(function() {

setTimeout(changeBackground, 1000);

function changeBackground() {

$("#cari").css("background", "red"); }

function changeBackground2() {

$("#cari").css("background", "blue"); }

setTimeout(changeBackground2, 1000); });

</script> </body>

</html>

Rumus.php

<?php include 'database.php'; ?> <!DOCTYPE html>

<html> <head>

<title>-Math | Rumus</title>

<link rel="shortcut icon" href="images/icon.png" />

<link href="css/bootstrap.css" rel="stylesheet" />

(17)

<body>

<div class="container">

<?php include 'includes/header.php'; ?> <?php include 'includes/nav.php'; ?> <?php include 'includes/rumus.php'; ?> <?php include 'includes/footer.php'; ?> </div>

<script>

$(function() {

setTimeout(changeBackground, 1000);

function changeBackground() {

$("#cari").css("background", "red"); }

function changeBackground2() {

$("#cari").css("background", "blue"); }

setTimeout(changeBackground2, 1000); });

</script> </body>

</html>

Rumus_kumpul.php

<?php include 'database.php'; ?> <!DOCTYPE html>

<html> <head>

<title>-Math | Kumpulan Rumus</title>

<link rel="shortcut icon" href="images/icon.png" />

<link href="css/bootstrap.css" rel="stylesheet" />

<link rel="stylesheet" href="css/style.css" /> </head>

<body>

<div class="container">

(18)

<?php include 'includes/rumus.php'; ?> <?php include 'includes/footer.php'; ?> </div>

<script>

$(function() {

setTimeout(changeBackground, 1000);

function changeBackground() {

$("#cari").css("background", "red"); }

function changeBackground2() {

$("#cari").css("background", "blue"); }

setTimeout(changeBackground2, 1000); });

</script> </body>

</html>

File_rumus.php

<?php

if (isset($_GET['id'])) { $key = $_GET['id']; ?>

<section id="section">

<div class="wrapper-barang"> <?php

$query = mysqli_query($kon, "SELECT * FROM formula WHERE id='$key'");

while ($row = mysqli_fetch_array($query)) { $gambar = $row['gambar'];

$ket = $row['ket']; ?>

<div class="barang"> <ul>

<li><img src="<?php echo $gambar; ?>"></li>

(19)

</div> <?php }

?> </div> </div> </section> <?php } else {

?>

<section id="section">

<div class="wrapper-barang"> <?php

$query = mysqli_query($kon, "SELECT * FROM formula");

while ($row = mysqli_fetch_array($query)) { $gambar = $row['gambar'];

$ket = $row['ket']; ?>

<div class="barang"> <ul>

<li><a

href="tampil_rumus.php?ket=<?php echo $ket ?>&id=<?php echo $row['id']; ?>"><img src="images/rumus/<?php echo $gambar; ?>"></a></li>

<li class="nama"><?php echo $ket; ?></li>

</ul> </div> <?php }

?> </div> </section> <?php }

?>

(20)

<!-- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"

"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> -->

<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">

<head>

<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />

<title>-Math | Simulasi Soal</title>

<link rel="shortcut icon" href="images/icon.png" /> </head>

<body topmargin="0" leftmargin="0" bgcolor="#fff"> <table cellpadding="0" cellspacing="0" width="100%" height="100%">

<tr>

<td align="center" valign="middle">

<object id="quiz" width="720" height="540"

classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/ca bs/flash/swflash.cab#version=8,0,0,0" align="middle"> <param name="allowScriptAccess" value="sameDomain" /> <param name="movie" value="Matematika.swf" />

<param name="quality" value="high" /> <param name="bgcolor" value="#fff" />

<param name="allowFullScreen" value="true" />

<embed src="files/soal_matematika.swf" quality="high" bgcolor="#fff" width="720" height="540" name="quiz" align="middle" allowScriptAccess="sameDomain"

type="application/x-shockwave-flash"

pluginspage="http://www.adobe.com/go/getflashplayer" allowFullScreen="true" />

</object> </td> </tr> </table>

<script type="text/javascript" src="index_fixprompt.js"/> </body>

(21)

Komen.php

<!DOCTYPE html> <html>

<head> <style> #comment {

margin:20px 0 0 20px;

border: 2px solid #848484; border-radius:20px;

-moz-border-radius:20px; max-height: 90%;

font-weight: bold; color: #606060; padding: 10px; width: 400px;

background-color: #e4edae; }

#publishcomment {

border: 2px solid #848484;

box-shadow: 12px 12px 7px #888888; margin: 30px 0 50px 20px;

padding: 10px; max-height: 100%; color: #3d3d3d; width: 400px; font-size: 12px; line-height: 15px; }

#publishcomment hr { color: #ccc;

}

#publishcomment a { color: #da5700;

text-decoration: none; font-weight:normal; }

#publishcomment a:link { font-weight: bold;

}

(22)

text-decoration: underline; }

</style> <body>

<div id="comment">

<form name="submitcomment" method="post" action="submitcomment.php">

Nama:<br><input name="nama" type="text"><br>

Email(optional):<br><input name="email" type="text"><br> Komentar:<br><textarea name="komentar" rows="6"

cols="45"></textarea><br>

<input name="art_id" value="1" type="hidden"> <input name="art_url" value="tampil_rumus.php" type="hidden"><br>

<input name="tombol" value="Kirim" type="submit"></form></div>

<div id="publishcomment">

<?php include("publishcomment.php"); getcomment("1"); ?></div>

Referensi

Dokumen terkait

Sebagian orang menganggap matematika adalah salah satu pelajaran paling susah dan membosankan.. Mata pelajaran ini dianggap momok mimpi buruk dan bikin

Praktis Membangun Search Engine untuk Website Anda.. Membangun Aplikasi Web dengan PHP &amp; Mysql

Yang bertanda tangan dibawah ini,menerangkan Bahwa Mahasiswa Tugas Akhir Program Diploma III Teknik Informatika:. Nama : Veronika

Yang bertanda tangan dibawah ini, menerangkan bahwa Tugas Akhir Mahasiswa Program D-III Teknik Informatika :. Nama :

Yang bertanda tangan dibawah ini, menerangkan bahwa Mahasiswa Tugas Akhir Program Diploma 3 Teknik Informatika :. Nama : Michael Juan

Yang bertanda tangan di bawah ini, menerangkan bahwa Mahasiswa Tugas Akhir Program studi D3 Teknik Informatika:.. Nama :

Yang bertanda tangan dibawah ini menerangkan bahwa Mahasiswa Tugas Akhir. Program Diploma

Yang bertandatangan dibawah ini, menerangkan bahwa Tugas Akhir Mahasiswa Diploma 3.. Teknik