<td style="text-align:center;">'.$no.'</td> <a href="'.$link_update.'&id='.$h['id_diagnosa'].'&action=edit" class="btn btn-xs btn-default">edit</a>

Size: px
Start display at page:

Download "<td style="text-align:center;">'.$no.'</td> <a href="'.$link_update.'&id='.$h['id_diagnosa'].'&action=edit" class="btn btn-xs btn-default">edit</a>"

Transcription

1 LISTING PROGRAM Admin Index_diagnosa.php <?php $link_list='?hal=diagnosa'; $link_update='?hal=update_diagnosa'; $no=0;$daftar=''; $q="select * from diagnosa"; $q=mysql_query($q); if(mysql_num_rows($q) > 0){ while($h=mysql_fetch_array($q)){ $no++; $daftar.=' <tr> <td style="text-align:center;">'.$no.'</td> <td>'.$h['kode'].'</td> <td>'.$h['nama'].'</td> <td style="text-align:center;"> <a href="'.$link_update.'&id='.$h['id_diagnosa'].'&action=edit" class="btn btn-xs btn-default">edit</a> <a href="#" onclick="deleteconfirm(\''.$link_update.'&id='.$h['id_diagnosa'].'&ac tion=delete\');return(false);" class="btn btn-xs btndanger">hapus</a> '; </tr> </td> <script language="javascript">

2 function DeleteConfirm(url){ if (confirm("apakah anda yakin ingin menghapus?")){ </script> window.location.href=url; <div class="panel panel-primary"> <div class="panel-heading"> <h3 class="panel-title">data DIAGNOSA</h3> <div align="right" style="margin-bottom:10px;"><a href="<?php echo $link_update;" class="btn btn-sm btn-default">input Diagnosa Baru</a> <table class="table table-striped table-hover table-bordered"> <thead> <tr> <th style="text-align:center;" width="40">no</th> <th style="text-align:center;" width="80">kode</th> <th style="text-align:center;">nama DIAGNOSA</th> <th style="text-align:center;" width="110"> </thd> </table> </thead> <tbody> </tr> <?php echo $daftar; </tbody> Index_diagnosa update <?php $link_list='?hal=diagnosa'; $link_update='?hal=update_diagnosa';

3 if(isset($_post['save'])){ $id=$_post['id']; $action=$_post['action']; $kode=$_post['kode']; $nama=$_post['nama']; if(empty($kode) or empty($nama)){ $error='<strong>error!</strong> Lengkapi kode, dan nama diagnosa pada form di bawah ini.'; else{ if($action=='add'){ if(mysql_num_rows(mysql_query("select * from diagnosa where kode='".$kode."'"))>0){ $error='<strong>error!</strong> Kode sudah terdaftar sebelumnya. Silahkan gunakan kode yang lain.'; else{ $q="insert into diagnosa(kode, nama) values('".$kode."', '".$nama."')"; mysql_query($q); exit("<script>location.href='".$link_list."';</script>"); if($action=='edit'){ $q=mysql_query("select * from diagnosa where id_diagnosa='".$id."'"); $h=mysql_fetch_array($q); $kode_tmp=$h['kode']; if(mysql_num_rows(mysql_query("select * from gejala where kode='".$kode."' and kode<>'".$kode_tmp."'"))>0){ $error='<strong>error!</strong> Kode sudah terdaftar sebelumnya. Silahkan gunakan kode yang lain.'; else{ $q="update diagnosa set kode='".$kode."', nama='".$nama."' where id_diagnosa='".$id."'"; mysql_query($q);

4 exit("<script>location.href='".$link_list."';</script>"); else{ $kode='';$nama=''; if(empty($_get['action'])){$action='add';else{$action=$_get['a ction']; if($action=='edit'){ $id=$_get['id']; $q=mysql_query("select * from diagnosa where id_diagnosa='".$id."'"); $h=mysql_fetch_array($q); $kode=$h['kode']; $nama=$h['nama']; if($action=='delete'){ $id=$_get['id']; mysql_query("delete from diagnosa where id_diagnosa='".$id."'"); exit("<script>location.href='".$link_list."';</script>"); <div class="panel panel-primary"> <div class="panel-heading"> <h3 class="panel-title">update DATA DIAGNOSA</h3> <form action="" name="" method="post"> <input name="action" type="hidden" value="<?php echo $action;"> <input name="id" type="hidden" value="<?php echo $id;">

5 <?php if(!empty($error)){ echo ' '; <div class="alert alert-danger "> '.$error.' <div class="form-group"> <label for="kode">kode</label> <div class="row"><div class="col-xs-6"><input name="kode" class="form-control" id="kode" placeholder="" value="<?php echo $kode;"> <div class="form-group"> <label for="nama">nama Diagnosa</label> <input name="nama" class="form-control" id="nama" placeholder="" value="<?php echo $nama;"> <button name="save" type="submit" class="btn btnprimary">simpan</button> <button type="button" class="btn btn-default" onclick="location.href='<?php echo $link_list;';">batal</button> </form> Index_gejala.php <?php $link_list='?hal=gejala'; $link_update='?hal=update_gejala'; $no=0;$daftar=''; $q="select * from gejala";

6 $q=mysql_query($q); if(mysql_num_rows($q) > 0){ while($h=mysql_fetch_array($q)){ $no++; $daftar.=' <tr> <td style="text-align:center;">'.$no.'</td> <td>'.$h['kode'].'</td> <td>'.$h['nama'].'</td> <td>'.$h['pertanyaan'].'</td> <td style="text-align:center;"> <a href="'.$link_update.'&id='.$h['id_gejala'].'&action=edit" class="btn btn-xs btn-default">edit</a> <a href="#" onclick="deleteconfirm(\''.$link_update.'&id='.$h['id_gejala'].'&acti on=delete\');return(false);" class="btn btn-xs btn-danger">hapus</a> '; </tr> </td> <script language="javascript"> function DeleteConfirm(url){ if (confirm("apakah anda yakin ingin menghapus?")){ window.location.href=url; </script> <div class="panel panel-primary"> <div class="panel-heading"> <h3 class="panel-title">data IDENTIFIKASI GEJALA</h3>

7 <div align="right" style="margin-bottom:10px;"><a href="<?php echo $link_update;" class="btn btn-sm btndefault">input Identifikasi Baru</a> <table class="table table-striped table-hover tablebordered"> <thead> <tr> <th style="text-align:center;" width="40">no</th> <th style="text-align:center;" width="80">kode</th> IDENTIFIKASI</th> <th style="text-align:center;">nama <th style="text-align:center;">pertanyaan</th> <th style="text-align:center;" width="110"> </thd> </tr> </thead> <tbody> <?php echo $daftar; </tbody> </table> Index_gejala_update.php <?php $link_list='?hal=gejala'; $link_update='?hal=update_gejala'; if(isset($_post['save'])){ $id=$_post['id']; $action=$_post['action']; $kode=$_post['kode']; $nama=$_post['nama']; $pertanyaan=$_post['pertanyaan'];

8 if(empty($kode) or empty($nama) or empty($pertanyaan)){ $error='<strong>error!</strong> Lengkapi kode, nama gejala, dan pertanyaan pada form di bawah ini.'; else{ if($action=='add'){ if(mysql_num_rows(mysql_query("select * from gejala where kode='".$kode."'"))>0){ $error='<strong>error!</strong> Kode sudah terdaftar sebelumnya. Silahkan gunakan kode yang lain.'; else{ $q="insert into gejala(kode, nama, pertanyaan) values('".$kode."', '".$nama."', '".$pertanyaan."')"; mysql_query($q); exit("<script>location.href='".$link_list."';</script>"); if($action=='edit'){ $q=mysql_query("select * from gejala where id_gejala='".$id."'"); $h=mysql_fetch_array($q); $kode_tmp=$h['kode']; if(mysql_num_rows(mysql_query("select * from gejala where kode='".$kode."' and kode<>'".$kode_tmp."'"))>0){ $error='<strong>error!</strong> Kode sudah terdaftar sebelumnya. Silahkan gunakan kode yang lain.'; else{ $q="update gejala set kode='".$kode."', nama='".$nama."', pertanyaan='".$pertanyaan."' where id_gejala='".$id."'"; mysql_query($q); exit("<script>location.href='".$link_list."';</script>");

9 else{ $kode='';$nama='';$pertanyaan=''; if(empty($_get['action'])){$action='add';else{$action=$_get['a ction']; if($action=='edit'){ $id=$_get['id']; $q=mysql_query("select * from gejala where id_gejala='".$id."'"); $h=mysql_fetch_array($q); $kode=$h['kode']; $nama=$h['nama']; $pertanyaan=$h['pertanyaan']; if($action=='delete'){ $id=$_get['id']; mysql_query("delete from gejala where id_gejala='".$id."'"); exit("<script>location.href='".$link_list."';</script>"); <div class="panel panel-primary"> <div class="panel-heading"> <h3 class="panel-title">update DATA IDENTIFIKASI</h3> <form action="" name="" method="post"> <input name="action" type="hidden" value="<?php echo $action;"> <input name="id" type="hidden" value="<?php echo $id;"> <?php if(!empty($error)){ echo '

10 <div class="alert alert-danger "> '.$error.' '; <div class="form-group"> <label for="kode">kode</label> <div class="row"><div class="col-xs-6"><input name="kode" class="form-control" id="kode" placeholder="" value="<?php echo $kode;"> <div class="form-group"> <label for="nama">nama Identifikasi</label> <input name="nama" class="form-control" id="nama" placeholder="" value="<?php echo $nama;"> <div class="form-group"> <label for="pertanyaan">pertanyaan</label> <input name="pertanyaan" class="form-control" id="pertanyaan" placeholder="" value="<?php echo $pertanyaan;"> <button name="save" type="submit" class="btn btnprimary">simpan</button> <button type="button" class="btn btn-default" onclick="location.href='<?php echo $link_list;';">batal</button> </form> Index_pengetahuan.php <?php $link_list='?hal=pengetahuan'; $link_update='?hal=update_pengetahuan';

11 $no=0;$daftar=''; $q="select * from pengetahuan"; $q=mysql_query($q); if(mysql_num_rows($q) > 0){ while($h=mysql_fetch_array($q)){ $no++; =''; $gejala='';$y_gejala='';$n_gejala='';$y_diagnosa='';$n_diagnosa $qq=mysql_query("select * from gejala where id_gejala='".$h['id_gejala']."'"); $hh=mysql_fetch_array($qq); $gejala=$hh['nama']; if($h['y_gejala']!=0){ $qq=mysql_query("select * from gejala where id_gejala='".$h['y_gejala']."'"); $hh=mysql_fetch_array($qq); $next_y='tanya: '.$hh['pertanyaan']; if($h['n_gejala']!=0){ $qq=mysql_query("select * from gejala where id_gejala='".$h['n_gejala']."'"); $hh=mysql_fetch_array($qq); $next_n='tanya: '.$hh['pertanyaan']; if($h['y_diagnosa']!=0){ $qq=mysql_query("select * from diagnosa where id_diagnosa='".$h['y_diagnosa']."'"); $hh=mysql_fetch_array($qq); $next_y='diagnosa: '.$hh['nama']; if($h['n_diagnosa']!=0){ $qq=mysql_query("select * from diagnosa where id_diagnosa='".$h['n_diagnosa']."'"); $hh=mysql_fetch_array($qq);

12 $next_n='diagnosa: '.$hh['nama']; $daftar.=' <tr> <td style="text-align:center;">'.$no.'</td> <td><strong>jika</strong> '.$gejala.' <br /><strong>maka</strong> '.$next_y.'<br /><strong>jika TIDAK MAKA</strong> '.$next_n.'</td> <td style="text-align:center;"> <a href="'.$link_update.'&id='.$h['id_pengetahuan'].'&action=edi t" class="btn btn-xs btn-default">edit</a> <a href="#" onclick="deleteconfirm(\''.$link_update.'&id='.$h['id_pengetahuan'].' &action=delete\');return(false);" class="btn btn-xs btndanger">hapus</a> '; </tr> </td> <script language="javascript"> function DeleteConfirm(url){ if (confirm("apakah anda yakin ingin menghapus?")){ window.location.href=url; </script> <div class="panel panel-primary"> <div class="panel-heading"> <h3 class="panel-title">data BASIS PENGETAHUAN</h3>

13 <div align="right" style="margin-bottom:10px;"><a href="<?php echo $link_update;" class="btn btn-sm btndefault">input Basis Pengetahuan Baru</a> <table class="table table-striped table-hover tablebordered"> <thead> <tr> <th style="text-align:center;" width="40">no</th> PENGETAHUAN</th> <th style="text-align:center;">basis <th style="text-align:center;" width="110"> </thd> </tr> </thead> <tbody> <?php echo $daftar; </tbody> </table> Index_pengetahuan_update.php <?php $link_list='?hal=pengetahuan'; $link_update='?hal=update_pengetahuan'; if(isset($_post['save'])){ $id=$_post['id']; $action=$_post['action']; $id_gejala=$_post['gejala']; $y_gejala=$_post['gejala_yes']; $n_gejala=$_post['gejala_no']; $y_diagnosa=$_post['diagnosa_yes']; $n_diagnosa=$_post['diagnosa_no'];

14 if(!empty($id_gejala) and (!empty($y_gejala) or!empty($y_diagnosa)) and (!empty($n_gejala) or!empty($n_diagnosa))){ if($action=='add'){ if(mysql_num_rows(mysql_query("select * from pengetahuan where id_gejala='".$id_gejala."'"))>0){ $error='<strong>error!</strong> Gejala IF sudah terdaftar sebelumnya. Silahkan gunakan gejala yang lain.'; else{ if($y_diagnosa!=''){$y_gejala=''; if($n_diagnosa!=''){$n_gejala=''; $q="insert into pengetahuan(id_gejala, y_gejala, n_gejala, y_diagnosa, n_diagnosa) values('".$id_gejala."', '".$y_gejala."', '".$n_gejala."', '".$y_diagnosa."', '".$n_diagnosa."')"; mysql_query($q); exit("<script>location.href='".$link_list."';</script>"); if($action=='edit'){ $q=mysql_query("select * from pengetahuan where id_pengetahuan='".$id."'"); $h=mysql_fetch_array($q); $id_gejala_tmp=$h['id_gejala']; if(mysql_num_rows(mysql_query("select * from pengetahuan where id_gejala='".$id_gejala."' and id_gejala<>'".$id_gejala_tmp."'"))>0){ $error='<strong>error!</strong> Gejala IF sudah terdaftar sebelumnya. Silahkan gunakan gejala yang lain.'; else{ if($y_diagnosa!=''){$y_gejala=''; if($n_diagnosa!=''){$n_gejala=''; $q="update pengetahuan set id_gejala='".$id_gejala."', y_gejala='".$y_gejala."', n_gejala='".$n_gejala."', y_diagnosa='".$y_diagnosa."', n_diagnosa='".$n_diagnosa."' where id_pengetahuan='".$id."'"; mysql_query($q);

15 exit("<script>location.href='".$link_list."';</script>"); else{ $error='<strong>error!</strong> Lengkapi JIKA, salah satu dari MAKA, salah satu dari JIKA TIDAK MAKA pada form di bawah ini.'; else{ $id_gejala='';$y_gejala='';$n_gejala='';$y_diagnosa='';$n_diagn osa=''; if(empty($_get['action'])){$action='add';else{$action=$_get['a ction']; if($action=='edit'){ $id=$_get['id']; $q=mysql_query("select * from pengetahuan where id_pengetahuan='".$id."'"); $h=mysql_fetch_array($q); $id_gejala=$h['id_gejala']; $y_gejala=$h['y_gejala']; $n_gejala=$h['n_gejala']; $y_diagnosa=$h['y_diagnosa']; $n_diagnosa=$h['n_diagnosa']; if($action=='delete'){ $id=$_get['id']; mysql_query("delete from pengetahuan where id_pengetahuan='".$id."'"); exit("<script>location.href='".$link_list."';</script>"); $list_diagnosa='<option value=""></option>'; $list_diagnosa_yes='<option value=""></option>';

16 $list_diagnosa_no='<option value=""></option>'; $q=mysql_query("select * from diagnosa order by kode"); while($h=mysql_fetch_array($q)){ if($h['id_diagnosa']==$y_diagnosa){$s='selected';$y_gejala=''; else{$s=''; $list_diagnosa_yes.='<option value="'.$h['id_diagnosa'].'" '.$s.'>diagnosa: '.$h['kode'].' - '.$h['nama'].'</option>'; if($h['id_diagnosa']==$n_diagnosa){$s='selected';$n_gejala=''; else{$s=''; $list_diagnosa_no.='<option value="'.$h['id_diagnosa'].'" '.$s.'>diagnosa: '.$h['kode'].' - '.$h['nama'].'</option>'; $list_gejala='<option value=""></option>'; $list_gejala_yes='<option value=""></option>'; $list_gejala_no='<option value=""></option>'; $q=mysql_query("select * from gejala order by kode"); while($h=mysql_fetch_array($q)){ if($h['id_gejala']==$id_gejala){$s='selected';else{$s=''; $list_gejala.='<option value="'.$h['id_gejala'].'" '.$s.'>'.$h['kode'].' - '.$h['nama'].'</option>'; if($h['id_gejala']==$y_gejala){$s='selected';else{$s=''; $list_gejala_yes.='<option value="'.$h['id_gejala'].'" '.$s.'>tanya: '.$h['kode'].' - '.$h['pertanyaan'].'</option>'; if($h['id_gejala']==$n_gejala){$s='selected';else{$s=''; $list_gejala_no.='<option value="'.$h['id_gejala'].'" '.$s.'>tanya: '.$h['kode'].' - '.$h['pertanyaan'].'</option>'; <div class="panel panel-primary"> <div class="panel-heading"> <h3 class="panel-title">update DATA BASIS PENGETAHUAN</h3>

17 <form action="" name="" method="post"> <input name="action" type="hidden" value="<?php echo $action;"> <input name="id" type="hidden" value="<?php echo $id;"> <?php if(!empty($error)){ echo ' '; <div class="alert alert-danger "> '.$error.' <div class="form-group"> <label for="kode">jika</label> <select name="gejala" class="form-control"><?php echo $list_gejala;</select> <div class="form-group"> <label for="nama">maka</label> <div class="row"> <div class="col-md-6"> <select name="gejala_yes" class="form-control"><?php echo $list_gejala_yes;</select> <div class="col-md-6"> <select name="diagnosa_yes" class="form-control"><?php echo $list_diagnosa_yes;</select> <div class="form-group"> <label for="nama">jika TIDAK MAKA</label>

18 <div class="row"> <div class="col-md-6"> <select name="gejala_no" class="form-control"><?php echo $list_gejala_no;</select> <div class="col-md-6"> <select name="diagnosa_no" class="form-control"><?php echo $list_diagnosa_no;</select> <button name="save" type="submit" class="btn btnprimary">simpan</button> <button type="button" class="btn btn-default" onclick="location.href='<?php echo $link_list;';">batal</button> </form> Index_ubah_password.php <?php if(isset($_post['save'])){ if(empty($_post['passwordlama']) OR empty($_post['password']) OR empty($_post['password1'])){ $error='<strong>error!</strong> Lengkapi password saat ini dan password baru pada form di bawah ini.'; else{ if($_post['password']!=$_post['password1']){ tidak sama.'; $error='<strong>error!</strong> Password baru else{ if(mysql_num_rows(mysql_query("select * from user where id_user='".$_session['login_id']."' and password='".md5($_post['passwordlama'])."'"))>0){ mysql_query("update user set password='".md5($_post['password'])."' where id_user='".$_session['login_id']."'");

19 */ /*exit("<script>location.href='?hal=ubah_password';</script>"); $success='<strong>sukses!</strong> Password baru berhasil disimpan.'; else{ anda tidak sesuai.'; $error='<strong>error!</strong> Password <div class="panel panel-primary"> <div class="panel-heading"> <h3 class="panel-title">ubah PASSWORD</h3> <form action="" name="" method="post"> <?php if(!empty($error)){ echo ' <div class="alert alert-danger "> '.$error.' '; if(!empty($success)){ echo ' <div class="alert alert-success "> '.$success.'

20 '; <div class="form-group"> <label for="passwordlama">password Saat Ini</label> <div class="row"><div class="col-xs-6"><input name="passwordlama" type="password" class="form-control" id="passwordlama" placeholder=""> <div class="form-group"> <label for="password">password Baru</label> <div class="row"><div class="col-xs-6"><input name="password" type="password" class="form-control" id="password" placeholder=""> <div class="form-group"> <label for="password1">ulangi</label> <div class="row"><div class="col-xs-6"><input name="password1" type="password" class="form-control" id="password1" placeholder=""> <button name="save" type="submit" class="btn btnprimary">simpan</button> </form> CSS Theme.php body { padding-top: 70px; padding-bottom: 30px;.theme-dropdown.dropdown-menu {

21 position: static; display: block; margin-bottom: 20px;.theme-showcase > p >.btn { margin: 5px 0;.theme-showcase.navbar.container { width: auto; html { position: relative; min-height: 100%; body { /* Margin bottom by footer height */ margin-bottom: 60px;.footer { position: absolute; bottom: 0; width: 100%; /* Set the fixed height of the footer here */ height: 60px; background-color: #f5f5f5;.container.text-muted { margin: 20px 0;

22 Includes Cara_penggunaan.php <div class="page-header"> <h1>cara Penggunaan</h1> <p> Aplikasi ini berfungsi untuk mengetahui penyakit yang dialami oleh pasien melalui gejala awal yang diderita oleh pasien. Cara penggunaannya klik pada button "Konsultasi Baru" lalu ketikan nama lengkap anda setelah itu klik button mulai, setelah itu akan muncul beberapa pertanyaan jika pertanyaan tersebut adalah gejala awal yang diderita pasien maka klik tombol "Ya" dan jika tidak klik tombol "tidak" setelah anda mengklik tombol Ya atau Tidak maka pertanyaannya lainnya akan muncul, jika gejala awal pasien tidak ada pada pertanyaan tersebut maka penyakit pada pasien bukanlah penyakit yang disebabkan oleh virus. Aplkasi ini hanya menyediakan gejala awal penyakit yang disebabkan oleh virus. Berikut daftar penyakit yang disebabkan oleh virus yang terdapat pada aplikasi ini 1. Cacar 2.Cacar Air 3.Demam Chikungunya 4.Diare Infantial 5.Ensefalitas Jepang 6.Flu Burung 7.Hepatitis Viral 8.Herpes Simpleks 9.Herpes Zoster 10.HIV/AIDS 11.Influenza 12.Campak 13.Parotitis Epedemika 14.Poliomielitas 15.Dengue. </p> Home.php <div class="jumbotron" style="backgroundcolor:#ffb748;color:#fff;"> <h1>selamat datang,</h1> <p>aplikasi ini berfungsi untuk membantu mendiagnosa penyakit yang disebabkan oleh virus.</p> <p><a href="?hal=konsultasi" class="btn btn-primary btn-lg" role="button">konsultasi Baru»</a></p> Konsultasi.php <?php

23 $link_list='?hal=konsultasi'; $pertanyaan=''; $id_diagnosa=''; if(isset($_session['konsultasi_id'])){ $id_konsultasi=$_session['konsultasi_id']; if(mysql_num_rows($q=mysql_query("select * from konsultasi where id_konsultasi='".$id_konsultasi."' and id_diagnosa>0"))>0){ $h=mysql_fetch_array($q); $id_diagnosa=$h['id_diagnosa']; $q=mysql_query("select * from diagnosa where id_diagnosa='".$id_diagnosa."'"); $h=mysql_fetch_array($q); $nama_diagnosa=$h['nama']; $no=0; $daftar_konsultasi=''; $q=mysql_query("select * from konsultasi_detail where id_konsultasi='".$id_konsultasi."' order by id_konsultasi_detail"); while($h=mysql_fetch_array($q)){ $no++; $id_pengetahuan=$h['id_pengetahuan']; $jawaban=$h['jawaban']; $qq=mysql_query("select * from pengetahuan where id_pengetahuan='".$id_pengetahuan."'"); $hh=mysql_fetch_array($qq); $id_gejala=$hh['id_gejala']; $qq=mysql_query("select * from gejala where id_gejala='".$id_gejala."'"); $hh=mysql_fetch_array($qq); $pertanyaan=$hh['pertanyaan']; if($jawaban=='y'){$jawaban='ya';else{$jawaban='tidak'; $daftar_konsultasi.='<li class="list-groupitem">'.$no.'. '.$pertanyaan.' <strong>'.$jawaban.'</strong></li>';

24 else{ $q=mysql_query("select * from konsultasi_detail where id_konsultasi='".$id_konsultasi."' order by id_konsultasi_detail desc limit 0,1"); if(mysql_num_rows($q)>0){ $h=mysql_fetch_array($q); $id_pengetahuan=$h['id_pengetahuan']; $jawaban=$h['jawaban']; $q=mysql_query("select * from pengetahuan where id_pengetahuan='".$id_pengetahuan."'"); $h=mysql_fetch_array($q); if($jawaban=='y'){ else{ $id_gejala=$h['y_gejala']; $id_gejala=$h['n_gejala']; $q=mysql_query("select * from gejala where id_gejala='".$id_gejala."'"); $h=mysql_fetch_array($q); $pertanyaan=$h['pertanyaan']; $id_pengetahuan=0; $q=mysql_query("select * from pengetahuan where id_gejala='".$id_gejala."'"); else{ if(mysql_num_rows($q)>0){ $h=mysql_fetch_array($q); $id_pengetahuan=$h['id_pengetahuan']; $q=mysql_query("select * from pengetahuan order by id_pengetahuan limit 0,1"); $h=mysql_fetch_array($q); $id_pengetahuan=$h['id_pengetahuan']; $id_gejala=$h['id_gejala'];

25 $q=mysql_query("select * from gejala where id_gejala='".$id_gejala."'"); $h=mysql_fetch_array($q); $pertanyaan=$h['pertanyaan']; <?php if(!isset($_session['konsultasi_id'])){ <div class="panel panel-primary"> <div class="panel-heading"> <h3 class="panel-title">konsultasi</h3> <form action="konsultasi.php" id="form" method="post"> <input name="action" type="hidden" value="add"> <?php if(!empty($error)){ echo '<div class="alert alert-danger ">'.$error.''; <div class="alert alert-danger" style="display:none;" id="alert"> <div class="form-group"> <label for="nama">nama User</label> <div class="row"> <div class="col-md-6"> <input name="nama" class="form-control" id="nama" placeholder="" value="">

26 <button name="save" id="btn_save" type="submit" class="btn btnsuccess">mulai»</button> </form> <script type="text/javascript"> jquery(document).ready(function() { $('#form').submit(function () { if($.trim($('#nama').val())==''){ $('#alert').html('<strong>error!</strong> Lengkapi nama user pada form di bawah ini.'); $.ajax({ $('#alert').show(); return false; type: 'POST', url: $(this).attr('action'), data: $(this).serialize(), beforesend: function(data) {, $('#btn_save').html('loading...'); error: function(data) { $('#alert').html('<strong>error!</strong> Permintaan data gagal.'); ); );, $('#alert').show(); $('#btn_save').html('mulai»'); success: function(data) { return false; window.location='<?php echo $link_list;'; );

27 </script> <?php else{ <?php if($id_diagnosa==0){ <form action="konsultasi.php" id="form_konsultasi" method="post"> <input name="action" type="hidden" value="konsultasi"> <input name="id" type="hidden" value="<?php echo $id_pengetahuan;"> <div class="panel panel-primary"> <div class="panel-heading"> <h3 class="panel-title">jawablah pertanyaan berikut ini</h3> <div class="panel-body"> <?php if($id_pengetahuan==0){ echo '<div class="alert alert-danger "><strong>error!</strong> Basis data tidak ditemukan.<br /><br /><button name="new" type="submit" class="btn btnwarning">batal</button>'; else{ <h3><?php echo $pertanyaan;</h3><br /><br /> <button name="yes" type="submit" class="btn btnprimary">ya</button> <button name="no" type="submit" class="btn btndefault">tidak</button> <button name="new" type="submit" class="btn btn-warning" style="float:right">batal</button> </form> <?php else{ <?php <form action="konsultasi.php" id="form_konsultasi" method="post"> <input name="action" type="hidden" value="new"> <div class="panel panel-primary"> <div class="panel-heading">

28 <h3 class="panel-title">hasil KONSULTASI</h3> <div class="panel-body"> <center>adapun solusinya adalah <h3><?php echo $nama_diagnosa;</h3><br /><br /> <button name="new" type="submit" class="btn btnwarning">konsultasi LAGI</button></center> </form> <div class="page-header"> <h1>riwayat Pertanyaan</h1> <div class="row"> <div class="col-sm-12"> <ul class="list-group"> <?php echo $daftar_konsultasi; </ul> <?php <?php Login.php <div class="page-header" style="text-align:center"> <h1>login Administrator</h1> <div class="row "> <div class="col-sm-4 well center"> <form class="form-signin" role="form" action="login.php" method="post">

29 <input name="username" type="" class="form-control" placeholder="username" required autofocus style="marginbottom:10px;"> <input name="password" type="password" class="formcontrol" placeholder="password" required style="margin-bottom:10px;"> <button name="submit" class="btn btn-lg btn-primary btn-block" type="submit">login</button> </form> <style type="text/css">.center{float: none; margin-left: auto; margin-right: auto; </style> Config.php <?php $db_host = 'localhost'; $db_user = 'root'; $db_password = ''; $db_name = 'forward_chaining'; $www = ' $conn = mysql_connect($db_host,$db_user,$db_password) or die('koneksi ke server database gagal.'); mysql_select_db($db_name,$conn) or die('database tidak ditemukan.'); Header.php <div class="container">

30 <div class="navbar-header"> <button type="button" class="navbar-toggle" datatoggle="collapse" data-target=".navbar-collapse"> <span class="sr-only">toggle navigation</span> <span class="icon-bar"></span> <span class="icon-bar"></span> <span class="icon-bar"></span> </button> <a class="navbar-brand" href="./" style="color:#ffb648;text-transform:uppercase;">sistem Pakar Diagnosa Penyakit Yang Disebabkan Oleh Virus</a> <div class="navbar-collapse collapse"> <ul class="nav navbar-nav"> <li <?php if($current_page==''){echo 'class="active"';><a href="./">home</a></li> <li <?php if($current_page=='cara_penggunaan'){echo 'class="active"';><a href="?hal=cara_penggunaan">cara Penggunaan</a></li> <li <?php if($current_page=='konsultasi'){echo 'class="active"';><a href="?hal=konsultasi">konsultasi Baru</a></li> </ul> <ul class="nav navbar-nav navbar-right"> <?php if(!isset($_session['login_id'])){ <li <?php if($current_page=='login'){echo 'class="active"';><a href="?hal=login">login Administrator</a></li> </ul> Template.php <?php else{ <li><a href="logout.php">logout</a></li> <?php <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" " <html xmlns=" xml:lang="en" lang="en">

31 <head> <title>sistem Pakar Metode Forward Chaining</title> <meta name="description" content="" /> <meta name="keywords" content="" /> <meta http-equiv="content-type" content="application/xhtml+xml; charset=utf-8" /> <meta http-equiv="content-style-type" content="text/css" /> <link href="css/bootstrap.min.css" rel="stylesheet" type="text/css" media="all" /> <link href="css/bootstrap-theme.min.css" rel="stylesheet" type="text/css" media="all" /> <link href="css/theme.css" rel="stylesheet"> <script src=" s"></script> </head> <body> <script src="js/bootstrap.min.js"></script> <div class="navbar navbar-inverse navbar-fixed-top" role="navigation"> <?php include 'header.php'; <div class="container"> <?php if(!isset($_session['login_id'])){ eval($content); else{ <div class="row"> <div class="col-sm-3"> <?php include 'sidebar.php';

32 <div class="col-sm-9"> <?php eval($content); <?php <?php //include 'sidebar.php'; <?php //eval($content); </body> </html>

TUTORIAL CRUD CODEIGNITER

TUTORIAL CRUD CODEIGNITER TUTORIAL CRUD CODEIGNITER With MySQL Tutorial ini saya dedikasikan untuk yang baru terjun di framework codeigniter, dan para pemula yang ingin belajar secara otodidak. Crud merupakan kewajiban dasar yang

More information

,.., «..»

,.., «..» ,.., 2018. 09.03.03.19 - «..».... 2018 1 : - 39, 5, 1. : -. :,, -,. -.,,. 2 ... 4 1 -. 6 1.1 -... 6 1.2 -... 9 1.3 -... 11 1.4, -... 13 2. - «..»... 16 2.1.... 16 2.2 CMS WordPress... 17 2.3 -... 22...

More information

LAMPIRAN. Index.php. <?php. unset($_session["status"]); //session_destroy(); //session_destroy();

LAMPIRAN. Index.php. <?php. unset($_session[status]); //session_destroy(); //session_destroy(); LAMPIRAN Index.php unset($_session["status"]); //session_destroy(); //session_destroy();?>

More information

Lampiran Source Code:

Lampiran Source Code: Lampiran Source Code: Halaman Login Siswa Sourcecode : @session_start(); $db = mysqli_connect("localhost", "root", "", "learning");

More information

Project Part 2 (of 2) - Movie Poster And Actor! - Lookup

Project Part 2 (of 2) - Movie Poster And Actor! - Lookup Getting Started 1. Go to http://quickdojo.com 2. Click this: Project Part 2 (of 2) - Movie Poster And Actor! - Lookup This is an extension of what you did the last time (the Movie Poster lookup from Week

More information

HTML Summary. All of the following are containers. Structure. Italics Bold. Line Break. Horizontal Rule. Non-break (hard) space.

HTML Summary. All of the following are containers. Structure. Italics Bold. Line Break. Horizontal Rule. Non-break (hard) space. HTML Summary Structure All of the following are containers. Structure Contains the entire web page. Contains information

More information

A designers guide to creating & editing templates in EzPz

A designers guide to creating & editing templates in EzPz A designers guide to creating & editing templates in EzPz Introduction...2 Getting started...2 Actions...2 File Upload...3 Tokens...3 Menu...3 Head Tokens...4 CSS and JavaScript included files...4 Page

More information

CSS (Cascading Style Sheets)

CSS (Cascading Style Sheets) CSS (Cascading Style Sheets) CSS (Cascading Style Sheets) is a language used to describe the appearance and formatting of your HTML. It allows designers and users to create style sheets that define how

More information

Dingle Coderdojo 6. Project Part 2 (of 2) - Movie Poster And Actor! - Lookup. Week 6

Dingle Coderdojo 6. Project Part 2 (of 2) - Movie Poster And Actor! - Lookup. Week 6 Dingle Coderdojo 6 Week 6 Project Part 2 (of 2) - Movie Poster And Actor! - Lookup This is an extension of what you did the last time (the Movie Poster lookup from Week 5). Make sure you ve finished that

More information

LAMPIRAN Kode Program

LAMPIRAN Kode Program 73 LAMPIRAN Kode Program 1. Index.php

More information

Bootstrap 1/20

Bootstrap 1/20 http://getbootstrap.com/ Bootstrap 1/20 MaxCDN

More information

Chapter6: Bootstrap 3. Asst.Prof.Dr. Supakit Nootyaskool Information Technology, KMITL

Chapter6: Bootstrap 3. Asst.Prof.Dr. Supakit Nootyaskool Information Technology, KMITL Chapter6: Bootstrap 3 Asst.Prof.Dr. Supakit Nootyaskool Information Technology, KMITL Objective To apply Bootstrap to a web site To know how to build various bootstrap commands to be a content Topics Bootstrap

More information

Create First Web Page With Bootstrap

Create First Web Page With Bootstrap Bootstrap : Responsive Design Create First Web Page With Bootstrap 1. Add the HTML5 doctype Bootstrap uses HTML elements and CSS properties that require the HTML5 doctype. 2. Bootstrap 3 is mobile-first

More information

Wireframe :: tistory wireframe tistory.

Wireframe :: tistory wireframe tistory. Page 1 of 45 Wireframe :: tistory wireframe tistory Daum Tistory GO Home Location Tags Media Guestbook Admin 'XHTML+CSS' 7 1 2009/09/20 [ ] XHTML CSS - 6 (2) 2 2009/07/23 [ ] XHTML CSS - 5 (6) 3 2009/07/17

More information

WEB/DEVICE DEVELOPMENT CLIENT SIDE MIS/CIT 310

WEB/DEVICE DEVELOPMENT CLIENT SIDE MIS/CIT 310 WEB/DEVICE DEVELOPMENT CLIENT SIDE MIS/CIT 310 Project #4 Updating your class project to be more mobile friendly To gain a fuller appreciate for Responsive Design, please review Chapter 8. Another great

More information

LAMPIRAN. <meta name="description" content="creative - Bootstrap 3 Responsive Admin Template">

LAMPIRAN. <meta name=description content=creative - Bootstrap 3 Responsive Admin Template> LAMPIRAN add_anggota.php(potongan kode untuk menambah anggota) session_start(); if (empty($_session['username'])){ header('location:login.php'); else { include "../koneksi.php";

More information

Spring Data JPA, Spring Boot, Oracle, AngulerJS 적용게시판실습 게시판리스트보기.

Spring Data JPA, Spring Boot, Oracle, AngulerJS 적용게시판실습 게시판리스트보기. Spring Data JPA, Spring Boot, Oracle, AngulerJS 적용게시판실습 http://ojc.asia, http://ojcedu.com 게시판리스트보기 Spring JDBC 또는 MyBatis로만들때보다쉽고빠르게작성할수있다. 스프링컨트롤러는 RestController를적용했으며, 뷰페이지에 Bootstrap 및 AngulerJS 적용했다.

More information

LAMPIRAN-LAMPIRAN A. Source Code 1) Sample Controller pada HomeController.php

LAMPIRAN-LAMPIRAN A. Source Code 1) Sample Controller pada HomeController.php 67 LAMPIRAN-LAMPIRAN A. Source Code 1) Sample Controller pada HomeController.php

More information

Building beautiful websites with Bootstrap: A case study. by Michael Kennedy michaelckennedy.net

Building beautiful websites with Bootstrap: A case study. by Michael Kennedy michaelckennedy.net Building beautiful websites with Bootstrap: A case study by Michael Kennedy DevelopMentor @mkennedy michaelckennedy.net Objectives Learn what Bootstrap has to offer web developers Install and use Bootstrap

More information

Working Bootstrap Contact form with PHP and AJAX

Working Bootstrap Contact form with PHP and AJAX Working Bootstrap Contact form with PHP and AJAX Tutorial by Ondrej Svestka Bootstrapious.com Today I would like to show you how to easily build a working contact form using Boostrap framework and AJAX

More information

This project will use an API from to retrieve a list of movie posters to display on screen.

This project will use an API from   to retrieve a list of movie posters to display on screen. Getting Started 1. Go to http://quickdojo.com 2. Click this: Project Part 1 (of 2) - Movie Poster Lookup Time to put what you ve learned to action. This is a NEW piece of HTML, so start quickdojo with

More information

Description: This feature will enable user to send messages from website to phone number.

Description: This feature will enable user to send messages from website to phone number. Web to Phone text message Description: This feature will enable user to send messages from website to phone number. User will use this feature and can send messages from website to phone number, this will

More information

Pratikum 8. Membuat Transaksi Penjualan

Pratikum 8. Membuat Transaksi Penjualan Pratikum 8 Membuat Transaksi Penjualan Transaksi adalah Hubungan tabel satu dengan yang lain menjadi sebuah form, di dalam form tersebut mengambil beberapa field dari tabel lain sehingga menjadi satu inputan.

More information

Mateen Eslamy 10/31/13

Mateen Eslamy 10/31/13 Mateen Eslamy 10/31/13 Tutorial In this tutorial, you ll learn how to create a webpage using Twitter Bootstrap 3. The goal of this tutorial is to create a responsive webpage, meaning that if the webpage

More information

Cara menggunakan TinyMCE

Cara menggunakan TinyMCE Cara menggunakan TinyMCE Oleh: Shidqi Halo semua kali ini gw mau share cara menggunakan tinymce apa itu tinymce? berikut penjelasanya dari wikipedia TinyMCE is a platform-independent, browser-based WYSIWYG

More information

L A M P I R A N. Universitas Sumatera Utara

L A M P I R A N. Universitas Sumatera Utara L A M P I R A N LAMPIRAN 1. Listing Program Aplikasi e-election Berbasis SMS Gateway index.php

More information

LISTING PROGRAM on.py import RPi.GPIO as GPIO. import time. GPIO.setmode(GPIO.BCM) GPIO.

LISTING PROGRAM on.py import RPi.GPIO as GPIO. import time. GPIO.setmode(GPIO.BCM) GPIO. LISTING PROGRAM -----------------1on.py----------------- import RPi.GPIO as GPIO import time GPIO.setmode(GPIO.BCM) GPIO.setwarnings(False) GPIO.setup(14,GPIO.OUT) GPIO.output(14,GPIO.HIGH) -----------------1off.py-----------------

More information

Mobile Design for the Future That is Here Already. Rick Ells UW Information Technology University of Washington

Mobile Design for the Future That is Here Already. Rick Ells UW Information Technology University of Washington Mobile Design for the Future That is Here Already Rick Ells UW Information Technology University of Washington Why Mobile? Why Accessible? Are UW Web sites a public accomodation under the Americans with

More information

Front-End UI: Bootstrap

Front-End UI: Bootstrap Responsive Web Design BootStrap Front-End UI: Bootstrap Responsive Design and Grid System Imran Ihsan Assistant Professor, Department of Computer Science Air University, Islamabad, Pakistan www.imranihsan.com

More information

Lab 4 CSS CISC1600, Spring 2012

Lab 4 CSS CISC1600, Spring 2012 Lab 4 CSS CISC1600, Spring 2012 Part 1 Introduction 1.1 Cascading Style Sheets or CSS files provide a way to control the look and feel of your web page that is more convenient, more flexible and more comprehensive

More information

GIMP WEB 2.0 MENUS. Before we begin this tutorial let s visually compare a standard navigation bar and a web 2.0 navigation bar.

GIMP WEB 2.0 MENUS. Before we begin this tutorial let s visually compare a standard navigation bar and a web 2.0 navigation bar. GIMP WEB 2.0 MENUS Before we begin this tutorial let s visually compare a standard navigation bar and a web 2.0 navigation bar. Standard Navigation Bar Web 2.0 Navigation Bar Now the all-important question

More information

Адаптивный дизайн веб-страниц с использованием сеточных технологий

Адаптивный дизайн веб-страниц с использованием сеточных технологий Адаптивный дизайн веб-страниц с использованием сеточных технологий ТНК 2018 Теоретический материал http://www.w3.org/tr/2015/wdcss-grid-1-20150917/#propdef-gridauto-columns 960 System (960.gs) Пример

More information

Introduction to HTML5

Introduction to HTML5 Introduction to HTML5 History of HTML 1991 HTML first published 1995 1997 1999 2000 HTML 2.0 HTML 3.2 HTML 4.01 XHTML 1.0 After HTML 4.01 was released, focus shifted to XHTML and its stricter standards.

More information

Presenter: Richard Merrill, Autograff Inc.

Presenter: Richard Merrill, Autograff Inc. Presenter: Richard Merrill, Autograff Inc. File and Folder Naming Meta tags controlled and standardized Semantically-rich spider searchable menus Moving pages while preserving menus Common folder and page

More information

REGISTRATION GUIDE MCIS CUSTOMER PORTAL. Page 1

REGISTRATION GUIDE MCIS CUSTOMER PORTAL. Page 1 REGISTRATION GUIDE MCIS CUSTOMER PORTAL Page 1 Customer Portal Registration Guide Go to www.mcis.my and click the Customer Portal tab Page 2 Customer Portal Registration Guide 1. The page shown below will

More information

Deccansoft Software Services

Deccansoft Software Services Deccansoft Software Services (A Microsoft Learning Partner) HTML and CSS COURSE SYLLABUS Module 1: Web Programming Introduction In this module you will learn basic introduction to web development. Module

More information

Implementing a chat button on TECHNICAL PAPER

Implementing a chat button on TECHNICAL PAPER Implementing a chat button on TECHNICAL PAPER Contents 1 Adding a Live Guide chat button to your Facebook page... 3 1.1 Make the chat button code accessible from your web server... 3 1.2 Create a Facebook

More information

CSS (Cascading Style Sheets): An Overview

CSS (Cascading Style Sheets): An Overview CSS (Cascading Style Sheets): An Overview CSS (Cascading Style Sheets) is a language used to describe the appearance and formatting of your HTML. It allows designers and users to create style sheets that

More information

Title: Dec 11 3:40 PM (1 of 11)

Title: Dec 11 3:40 PM (1 of 11) ... basic iframe body {color: brown; font family: "Times New Roman"} this is a test of using iframe Here I have set up two iframes next to each

More information

if(! list.contains(list.collect(params,'key'),'title')){ <div style="font-weight:bold;color:red;">"warning: A title field must be assigned.

if(! list.contains(list.collect(params,'key'),'title')){ <div style=font-weight:bold;color:red;>warning: A title field must be assigned. /** Author: Blake Harms Version 2.9 See: http://developer.mindtouch.com/app_catalog/ Integrated_Bug_and_Issue_Tracker on 2.9 added performance tunning posted by Sego on this blog post: http://forums.developer.mindtouch.com/

More information

Making a live edit contact list with Coldbox REST & Vue.js

Making a live edit contact list with Coldbox REST & Vue.js Tweet Making a live edit contact list with Coldbox REST & Vue.js Scott Steinbeck Mar 28, 2016 Today we will be making a contact database that you can quickly and easily manage using ColdBox and Vue.js.

More information

P - 13 Bab 10 : PHP MySQL Lanjut (Studi Kasus)

P - 13 Bab 10 : PHP MySQL Lanjut (Studi Kasus) P - 13 Bab 10 : PHP MySQL Lanjut (Studi Kasus) 10.1 Tujuan Mahasiswa mampu : Mengetahui dan Memahami Integrasi PHP dengan MySQL Mengetahui dan Memahami Relasi Dengan phpmyadmin Designer Mengetahui dan

More information

Environmental Sanitation Management Information System - ESMIS

Environmental Sanitation Management Information System - ESMIS Environmental Sanitation Management Information System - ESMIS System Manual Contents 1 General Information... 1 1.1 System Overview... 1 1.2 Organization of the Manual... 1 1.3 User Access Level... 2

More information

GIMP WEB 2.0 MENUS. Web 2.0 Menus: Horizontal Navigation Bar

GIMP WEB 2.0 MENUS. Web 2.0 Menus: Horizontal Navigation Bar GIMP WEB 2.0 MENUS Web 2.0 Menus: Horizontal Navigation Bar WEB 2.0 MENUS: HORIZONTAL NAVIGATION BAR Hover effect: You may create your button in GIMP. Mine is 122 pixels by 48 pixels. You can use whatever

More information

Vebra Search Integration Guide

Vebra Search Integration Guide Guide Introduction... 2 Requirements... 2 How a Vebra search is added to your site... 2 Integration Guide... 3 HTML Wrappers... 4 Page HEAD Content... 4 CSS Styling... 4 BODY tag CSS... 5 DIV#s-container

More information

Session 5. Web Page Generation. Reading & Reference

Session 5. Web Page Generation. Reading & Reference Session 5 Web Page Generation 1 Reading Reading & Reference https://en.wikipedia.org/wiki/responsive_web_design https://www.w3schools.com/css/css_rwd_viewport.asp https://en.wikipedia.org/wiki/web_template_system

More information

Lampiran. Lampiran 1 : Database

Lampiran. Lampiran 1 : Database 78 Lampiran Lampiran 1 : Database 79 80 Lampiran 2 : Coding List a. Coding Login

More information

Create a cool image gallery using CSS visibility and positioning property

Create a cool image gallery using CSS visibility and positioning property GRC 275 A8 Create a cool image gallery using CSS visibility and positioning property 1. Create a cool image gallery, having thumbnails which when moused over display larger images 2. Gallery must provide

More information

blink.html 1/1 lectures/6/src/ form.html 1/1 lectures/6/src/

blink.html 1/1 lectures/6/src/ form.html 1/1 lectures/6/src/ blink.html 1/1 3: blink.html 5: David J. Malan Computer Science E-75 7: Harvard Extension School 8: 9: --> 11:

More information

Psychology Experiments on the Web Using PHP and MySQL

Psychology Experiments on the Web Using PHP and MySQL Psychology Experiments on the Web Using PHP and MySQL Lisa M. DeBruine August 14, 2008 Contents 1 Basic Web Authoring 2 1.1 Setting up your webpage....................... 2 1.2 HTML.................................

More information

<?php $parts=array('','','tfrec','home'); include '/Webstuff/apacheSites/cms3/CMSpageCode.php';?>

<?php $parts=array('','','tfrec','home'); include '/Webstuff/apacheSites/cms3/CMSpageCode.php';?> index.php Printed: 4/26/10 4:29:08 PM Page 1 of 1 CMSpageCode.php Printed: 4/26/10 4:28:16 PM Page 1 of

More information

Using htmlarea & a Database to Maintain Content on a Website

Using htmlarea & a Database to Maintain Content on a Website Using htmlarea & a Database to Maintain Content on a Website by Peter Lavin December 30, 2003 Overview If you wish to develop a website that others can contribute to one option is to have text files sent

More information

Panduan Menggunakan Autoresponder FreeAutobot.com

Panduan Menggunakan Autoresponder FreeAutobot.com Panduan Menggunakan Autoresponder FreeAutobot.com Dengan memperolehi e-book ini, anda mempunyai kebenaran untuk memberi secara percuma kepada pelanggan anda atau tawarkan sebagai bonus kepada pembelian

More information

Technical Guide Login Page Customization

Technical Guide Login Page Customization Released: 2017-11-15 Doc Rev No: R2 Copyright Notification Edgecore Networks Corporation Copyright 2019 Edgecore Networks Corporation. The information contained herein is subject to change without notice.

More information

I completely understand your anxiety when starting learn codeigniter.

I completely understand your anxiety when starting learn codeigniter. I completely understand your anxiety when starting learn codeigniter. Confused, what have to know, and don't know start from where. The good news, In this tutorial, I will share with you how to start learning

More information

Fetch terms and conditions apply. Fetch is only available for business banking purposes. The Kiwibank Fetch name, logos and related trademarks and

Fetch terms and conditions apply. Fetch is only available for business banking purposes. The Kiwibank Fetch name, logos and related trademarks and Fetch terms and conditions apply. Fetch is only available for business banking purposes. The Kiwibank This form submits a single amount to Fetch and then returns/displays

More information

Paythru Remote Fields

Paythru Remote Fields Paythru Remote Fields Paythru Remote Fields are an alternative integration method for the Paythru Client POST API. The integration consists of contructing a basic javascript configuration object and including

More information

LAMPIRAN. Index.php. <script type="text/javascript" src="jquery-min.js"></script> <script type="text/javascript"> Universitas Sumatera Utara

LAMPIRAN. Index.php. <script type=text/javascript src=jquery-min.js></script> <script type=text/javascript> Universitas Sumatera Utara LAMPIRAN Index.php session_start(); error_reporting(0); include "timeout.php"; include "config/koneksi.php"; if($_session[login]==1){ if(!cek_login()){ $_SESSION[login] = 0; if($_session[login]==0){ header('location:logout.php');

More information

home.php 1/1 lectures/6/src/ include.php 1/1 lectures/6/src/

home.php 1/1 lectures/6/src/ include.php 1/1 lectures/6/src/ home.php 1/1 3: * home.php 5: * A simple home page for these login demos. 6: * David J. Malan 8: * Computer Science E-75 9: * Harvard Extension School 10: */ 11: // enable sessions 13: session_start();

More information

Pengguna akan diberikan Username dan Password oleh Administrator untuk login sebagai admin/conference Manager bagi conference yang akan diadakan.

Pengguna akan diberikan Username dan Password oleh Administrator untuk login sebagai admin/conference Manager bagi conference yang akan diadakan. Conference Manager Roles Guide - PENGGUNA MANUAL Login. Pengguna akan diberikan Username dan Password oleh Administrator untuk login sebagai admin/conference Manager bagi conference yang akan diadakan.

More information

Pengenalan Sistem Maklumat Dalam Pendidikan

Pengenalan Sistem Maklumat Dalam Pendidikan Pengenalan Sistem Maklumat Dalam Pendidikan 1 RELATIONSHIP & QUERY DALAM MICROSOFT ACCESS Kandungan Definisi Relationship (Hubungan) Jenis Relationship Membina Relationship Definisi Query dan Fungsi Query

More information

django-intranet Documentation

django-intranet Documentation django-intranet Documentation Release 0.2 Ionyse Nov 14, 2017 Contents 1 Abstract 1 2 Table of contents 3 2.1 Setup a new project............................................ 3 2.2 Create a new module...........................................

More information

Integrating the Quotation page with your site

Integrating the Quotation page with your site Integrating the with your site Introduction Until June 2014, for customers to obtain a quote for your service, it was necessary to redirect the customer to the Instant-Quote.co site. This is no longer

More information

DOKUMEN TIDAK TERKAWAL

DOKUMEN TIDAK TERKAWAL Halaman: 1/12 Tujuan : Arahan kerja ini adalah untuk menerangkan tatacara pendaftaran ID Pengguna di dalam Sistem Kewangan SAGA (Standard Accounting for Government Agencies) Universiti Putra Malaysia bagi

More information

ゼミ Wiki の再構築について 資料編 加納さおり

ゼミ Wiki の再構築について 資料編 加納さおり Wiki [ Fukuda Semi Wiki] [ 2 wiki] [ 3 ] [ 4 ] [ 5 ] [ 6 ] [ 7 ] [ 8 ] [ 9 ] [ 10 ] [ 11 ] [ 12 ] [ 13 ] [ 14 Menu1] [ 15 Menu2] [ 16 Menu3] [ 17 wiki Menu] [ 18 TOP ] [ 19 ] [ 20 ] [ 20] [ 21 ] [ 22 (

More information

Creating and Building Websites

Creating and Building Websites Creating and Building Websites Stanford University Continuing Studies CS 21 Mark Branom branom@alumni.stanford.edu Course Web Site: http://web.stanford.edu/group/csp/cs21 Week 6 Slide 1 of 28 Week 6 Agenda

More information

Web Publishing Intermediate 2

Web Publishing Intermediate 2 Web Publishing Intermediate 2 Building a Three Column Site with divs and float Jeff Pankin Information Services and Technology Table of Contents Course Objectives... 2 The CIG Web Site... 3 Using the Div

More information

How the Internet Works

How the Internet Works How the Internet Works The Internet is a network of millions of computers. Every computer on the Internet is connected to every other computer on the Internet through Internet Service Providers (ISPs).

More information

Slide 1. Chapter 5. How to use the MVC pattern to organize your code. 2010, Mike Murach & Associates, Inc. Murach's PHP and MySQL, C5

Slide 1. Chapter 5. How to use the MVC pattern to organize your code. 2010, Mike Murach & Associates, Inc. Murach's PHP and MySQL, C5 Slide 1 Chapter 5 How to use the MVC pattern to organize your code and MySQL, C5 Slide 2 Objectives Applied 1. Use the MVC pattern to develop your web applications. 2. Create and use functions that do

More information

HTML 5.0 KKCC INFO SYSTEMS. K.SrinivasaRao

HTML 5.0 KKCC INFO SYSTEMS. K.SrinivasaRao HTML 5.0 KKCC INFO SYSTEMS K.SrinivasaRao Document Type Declaration

More information

Introduction to Computer Science Web Development

Introduction to Computer Science Web Development Introduction to Computer Science Web Development Flavio Esposito http://cs.slu.edu/~esposito/teaching/1080/ Lecture 14 Lecture outline Discuss HW Intro to Responsive Design Media Queries Responsive Layout

More information

UNIVERSITY OF TORONTO Faculty of Arts and Science APRIL 2016 EXAMINATIONS. CSC309H1 S Programming on the Web Instructor: Ahmed Shah Mashiyat

UNIVERSITY OF TORONTO Faculty of Arts and Science APRIL 2016 EXAMINATIONS. CSC309H1 S Programming on the Web Instructor: Ahmed Shah Mashiyat UNIVERSITY OF TORONTO Faculty of Arts and Science APRIL 2016 EXAMINATIONS CSC309H1 S Programming on the Web Instructor: Ahmed Shah Mashiyat Duration - 2 hours Aid Sheet: Both side of one 8.5 x 11" sheet

More information

Guide to Integrate. ADSelfService Plus with. Outlook Web App.

Guide to Integrate. ADSelfService Plus with. Outlook Web App. Guide to Integrate ADSelfService Plus with Outlook Web App Contents Document Summary 1 ADSelfService Plus Overview 1 ADSelfService Plus Integration with Outlook Web App 1 Steps Involved 2 Step 1: Locate

More information

thymeleaf #thymeleaf

thymeleaf #thymeleaf thymeleaf #thymeleaf Table of Contents About 1 Chapter 1: Getting started with thymeleaf 2 Remarks 2 Versions 2 Examples 2 Configuration 2 Using checkboxes 3 Ajax form submition with Jquery 4 Replacing

More information

А «- - «Exellent»» 50, 18, «Exellent»., , -., -. -,, html -. - «Exellent»,.

А «- - «Exellent»» 50, 18, «Exellent»., , -., -. -,, html -. - «Exellent»,. А «- - «Exellent»» 50, 18, 21. - - «Exellent»., -. -. -. -, -., -. -,, html -. - «Exellent»,. А... 3 1 -... 5 1.1, -... 5 1.2 Э -... 8 1.3 -... 9 1.4, -... 16 1.4.1... 16 1.4.2... 18 1.4.3.... 18 2 - «Exellent»...

More information

Introduction to ARIA and HTML5. Jared Smith & Jonathan Whiting webaim.org

Introduction to ARIA and HTML5. Jared Smith & Jonathan Whiting webaim.org Introduction to ARIA and HTML5 Jared Smith & Jonathan Whiting webaim.org ARIA ARIA Accessible Rich Internet Applications Specification developed by the PFWG of the W3C s WAI. Huh? W3C Candidate Recommendation

More information

Style-Guidelines. Release 0.1

Style-Guidelines. Release 0.1 Style-Guidelines Release 0.1 Oct 31, 2017 Contents 1 Guidelines 3 i ii Author lxneng (Eric Lo) Version 1.0 Contents 1 2 Contents CHAPTER 1 Guidelines Python Code Style GuideLine PEP 8 : 4 : : 79,., =

More information

Make a Website. A complex guide to building a website through continuing the fundamentals of HTML & CSS. Created by Michael Parekh 1

Make a Website. A complex guide to building a website through continuing the fundamentals of HTML & CSS. Created by Michael Parekh 1 Make a Website A complex guide to building a website through continuing the fundamentals of HTML & CSS. Created by Michael Parekh 1 Overview Course outcome: You'll build four simple websites using web

More information

Basic Bootstrap Classes

Basic Bootstrap Classes .container Basic Bootstrap Classes sets fixed width to an element (which changes depending on a screen size to other fixed values, so it's still responsive) on all screen sizes except xs - on xs, the width

More information

Using Visual Studio 2017

Using Visual Studio 2017 C H A P T E R 1 Using Visual Studio 2017 In this chapter, I explain the process for installing Visual Studio 2017 and recreate the Party Invites project from Chapter 2 of Pro ASP.NET Core MVC. As you will

More information

Mobile Web Development

Mobile Web Development Mobile Web Development By Phil Huhn 2013-04-30 2013 Northern Software Group Agenda Web-site issues for mobile devices Responsive Design Media Queries Twitter Bootstrap As-is (themes) less variables.less

More information

LISTING KODE PROGRAM

LISTING KODE PROGRAM LISTING KODE PROGRAM Kategori PHP

More information

SK Telecom. Platform NATE WAP

SK Telecom. Platform NATE WAP SK Telecom Platform NATE WAP SK TELECOM NATE WAP This Document is copyrighted by SK Telecom and may not be reproduced without permission SK Building, SeRinDong-99, JoongRoGu, 110-110, Seoul, Korea SK Telecom

More information

As we design and build out our HTML pages, there are some basics that we may follow for each page, site, and application.

As we design and build out our HTML pages, there are some basics that we may follow for each page, site, and application. Extra notes - Client-side Design and Development Dr Nick Hayward HTML - Basics A brief introduction to some of the basics of HTML. Contents Intro element add some metadata define a base address

More information

For instructions to change the logo, please refer to: ore

For instructions to change the logo, please refer to:   ore Header Note: VapeDay Theme have 2 versions. Version 1.0 with Left bar for long list of categories and Version 2.0 with No Left bar with categories in the header. While editing the theme files from template

More information

PANDUAN PENGGUNA (SUPPLIER) MAINTAIN CERTIFICATES/SUPPLIER DETAILS SUPPLIER RELATIONSHIP MANAGEMENT SUPPLY CHAIN MANAGEMENT SYSTEM (SCMS)

PANDUAN PENGGUNA (SUPPLIER) MAINTAIN CERTIFICATES/SUPPLIER DETAILS SUPPLIER RELATIONSHIP MANAGEMENT SUPPLY CHAIN MANAGEMENT SYSTEM (SCMS) PANDUAN PENGGUNA (SUPPLIER) MAINTAIN CERTIFICATES/SUPPLIER DETAILS SUPPLIER RELATIONSHIP MANAGEMENT SUPPLY CHAIN MANAGEMENT SYSTEM (SCMS) DISEDIAKAN OLEH: SUPPLY CHAIN MANAGEMENT (SCM) BAHAGIAN ICT PROCESS

More information

Dreamweaver: Portfolio Site

Dreamweaver: Portfolio Site Dreamweaver: Portfolio Site Part 3 - Dreamweaver: Developing the Portfolio Site (L043) Create a new Site in Dreamweaver: Site > New Site (name the site something like: Portfolio, or Portfolio_c7) Go to

More information

Visitor Management System

Visitor Management System WWW.VALLINME.COM Visitor Management System Ver 1.0 Mohd Noor Azam 18-03-2015 [Type the abstract of the document here. The abstract is typically a short summary of the contents of the document. Type the

More information

Design Project. i385f Special Topics in Information Architecture Instructor: Don Turnbull. Elias Tzoc

Design Project. i385f Special Topics in Information Architecture Instructor: Don Turnbull. Elias Tzoc Design Project Site: News from Latin America Design Project i385f Special Topics in Information Architecture Instructor: Don Turnbull Elias Tzoc April 3, 2007 Design Project - 1 I. Planning [ Upper case:

More information

By the end of this chapter, you will have a very basic, but fully functional blogging system.

By the end of this chapter, you will have a very basic, but fully functional blogging system. C H A P T E R 5 Building the Entry Manager At this point, you know enough to start building your blog! In this chapter, I ll walk you through how to build the backbone of your blogging application. The

More information

PANDUAN PENGGUNA (SUPPLIER) MAINTAIN CERTIFICATES/SUPPLIER DETAILS SUPPLIER RELATIONSHIP MANAGEMENT SUPPLY CHAIN MANAGEMENT SYSTEM (SCMS)

PANDUAN PENGGUNA (SUPPLIER) MAINTAIN CERTIFICATES/SUPPLIER DETAILS SUPPLIER RELATIONSHIP MANAGEMENT SUPPLY CHAIN MANAGEMENT SYSTEM (SCMS) PANDUAN PENGGUNA (SUPPLIER) MAINTAIN CERTIFICATES/SUPPLIER DETAILS SUPPLIER RELATIONSHIP MANAGEMENT SUPPLY CHAIN MANAGEMENT SYSTEM (SCMS) DISEDIAKAN OLEH: SUPPLY CHAIN MANAGEMENT (SCM) BAHAGIAN ICT PROCESS

More information

CS134 Web Site Design & Development. Quiz1

CS134 Web Site Design & Development. Quiz1 CS134 Web Site Design & Development Quiz1 Name: Score: Email: I Multiple Choice Questions (2 points each, total 20 points) 1. Which of the following is an example of an IP address? a. www.whitehouse.gov

More information

JavaScript (5A) JavaScript

JavaScript (5A) JavaScript JavaScript (5A) JavaScript Copyright (c) 2012 Young W. Lim. Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.2 or any

More information