SURAT KETERANGAN. Hasil Uji Program Tugas Akhir. Nama : MEYLIA SANDRA TAMPUBOLON

Size: px
Start display at page:

Download "SURAT KETERANGAN. Hasil Uji Program Tugas Akhir. Nama : MEYLIA SANDRA TAMPUBOLON"

Transcription

1 SURAT KETERANGAN Hasil Uji Program Tugas Akhir Yang bertanda tangan dibawah ini, menerangkan bahwa Mahasiswa Tugas Akhir Program Diploma 3 Teknik Informatika : Nama : MEYLIA SANDRA TAMPUBOLON NIM : Prog.Studi : D3 Teknik Informatika Judul TA : PERANCANGAN APLIKASI SIMULASI PSIKOTEST BERBASIS WEB Telah melaksanakan test program Tugas Akhir Mahasiswa tersebut di atas pada tanggal... 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 DosenPembimbing (Dr. Syahriol Sitorus, S.Si.M.IT) NIP

2 KARTU BIMBINGAN TUGAS AKHIR MAHASISWA Nama Mahasiswa : MEYLIA SANDRA TAMPUBOLON Nomor Stambuk : Judul Tugas Akhir : PERANCANGAN APLIKASI SIMULASI PSIKOTEST BERBASIS WEB Dosen Pembimbing : Dr. Syahriol Sitorus, S.Si.M.IT Tanggal Mulai Bimbingan : Tanggal Selesai Bimbingan : No. Tanggal Asisten Bimbingan Pembahasan pada Asistensi Mengenai, pada Bab : Paraf Dosen Pembimbing Keterangan Diketahui, Ketua Prog.Studi D3 Teknik Informatika, Disetujui, Dosen Pembimbing, Dr. Elly Rosmaini, M.Si. Dr. Syahriol Sitorus, S.Si.M.IT NIP NIP

3 LAMPIRAN PROGRAM 1. Index.php <!doctype html> <html> <head> <meta charset="utf-8"> <title>perancangan APLIKASI SIMULASI PSIKOTEST BERBASIS WEB</title> <link rel="stylesheet" href="bootstrap/css/bootstrap.min.css"> <link rel="stylesheet" href="style.css"> <link rel="stylesheet" href="administrator/alert/css/jqueryconfirm.css"> <script type="text/javascript" src="bootstrap/js/bootstrap.min.js"></script> <script src="js/jquery.min.js"></script> <script src="administrator/alert/js/jquery-confirm.js"></script> </head> <body> <div id="wrapper"> <div id="header"> <div id="content"> <div class="row"> <div class="col-md-6"> <div class="panel panel-default"> <div class="panel-heading"> <h3 class="panel-title">login Peserta Ujian</h3>

4 <div class="panel-body"> <table width="100%" border="0" cellspacing="0" cellpadding="0" class="table"> <tbody> <tr> <td width="25%"> </td> <td width="75%"><input type="text" name="txt " id="txt " class="form-control"></td> </tr> <tr> <td>password</td> <td><input type="password" name="txtpassword" id="txtpassword" class="form-control"></td> </tr> <tr> <td> </td> <td><input type="button" name="cmdmasuk" id="cmdmasuk" value="masuk" class="btn btn-primary btn-sm btn-block"></td> </tr> </tbody> </table> <div class="col-md-6"> <div class="panel panel-danger"> <div class="panel-heading"> <h3 class="panel-title">login Administrator</h3>

5 <div class="panel-body"> <a href="login.php" class="btn btn-danger">login System</a> <a href="registrasi.php" class="btn btn-info">regitrasi</a> <script> $(document).ready(function(e) { $('#cmdmasuk').click(function(e) { var t =$('#txt ').val(); var pwd=$('#txtpassword').val(); $.post('validasiuser.php', { t t , pwd:pwd, function (data, status){ if (data==''){ document.location.href='home.php?page=zindex'; $.alert({content:data); ); ); );

6 </script> </body> </html> 2. Home.php error_reporting("e_all ^ E_NOTICE"); include 'cekuser.php'; include 'koneksi.php'; $idpeserta=$_session['sesiidpeserta']; $nama=$db->tampilrecord("tblpeserta", "idpeserta='$idpeserta'", "nama"); $t =$db->tampilrecord("tblpeserta", "idpeserta='$idpeserta'", " "); $pretest=$db->tampilrecord("tblpengaturan", "kriteria='pretest'", "nilai"); if ($pretest>=1){ echo document.location.href='ujian/index.php?page=info'; "<script> </script>"; <!doctype html> <html> <head> <meta charset="utf-8"> <title>perancangan APLIKASI SIMULASI PSIKOTEST BERBASIS WEB</title>

7 <link rel="stylesheet" href="bootstrap/css/bootstrap.min.css"> <link rel="stylesheet" href="style-home.css"> <link rel="stylesheet" href="administrator/alert/css/jqueryconfirm.css"> <script type="text/javascript" src="bootstrap/js/bootstrap.min.js"></script> <script src="js/jquery.min.js"></script> <script src="administrator/alert/js/jquery-confirm.js"></script> </head> <body> <div id="wrapper"> <div id="header"> <div id="container"> <div class="row" style="padding:10px;"> <div class="panel panel-info"> <div class="panel-heading"> <h4 class="panel-title">home</h4> <div class="panel-body"> $page=$_get['page']; if ($page==''){ <!-- --> <div class="col-md-12">

8 <div id="isi"> <div class="col-md-12"> <div id="ket"> <div id="cwaktu"> <!-- ---> include 'home/zindex.php'; <script> $(document).ready(function(e) { setinterval(function(){ $('#isi').load('home/index.php');, 1000); setinterval(function(){, 1000); $('#ket').load('home/hasil.php'); setinterval(function(){

9 , 1000); $('#cwaktu').load('home/cekwaktu.php'); ); </script> </body> </html> 3. Cek.php session_start(); if (!isset($_session[sesipsikologiuser]) or!isset($_session[sesipsikologipass])){ echo "<script> document.location.href='login.php'; </script>"; 4. Cekuser.php session_start(); if (!isset($_session['sesiidpeserta']) or!isset($_session['sesitgllahir'])){ echo "<script> document.location.href='index.php'; </script>"; 5. Koneksi.php if (file_exists('config.php')){

10 include 'config.php'; elseif (file_exists('../config.php')){ include '../config.php'; elseif (file_exists('../../config.php')){ include '../../config.php'; elseif (file_exists('../../../config.php')){ include '../../../config.php'; $db=new database('localhost', 'root', '', 'dbpsikotest'); $db->konekdb(); 6. Login.php <!doctype html> <html> <head> <meta charset="utf-8"> <title>login System</title> <link rel="stylesheet" href="bootstrap/css/bootstrap.min.css"> <script src="bootstrap/js/bootstrap.min.js"></script> <script src="js/jquery.min.js"></script> </head> <body> <div class="row">

11 <div class="col-md-4 col-xs-offset-4"> <div class="panel panel-info"> <div class="panel-heading">login <div class="panel-body"> <table width="100%" border="0" cellspacing="0" cellpadding="0" class="table"> <tbody> <tr> <td width="35%">username</td> <td width="65%"><input type="text" name="txtusername" id="txtusername" class="form-control"></td> </tr> <tr> <td>password</td> <td><input type="password" name="txtpassword" id="txtpassword" class="form-control"></td> </tr> <tr> <td> </td> <td><input type="button" name="cmdlogin" id="cmdlogin" value="login" class="btn btn-primary btn-sm btn-block"></td> </tr> </tbody> </table>

12 <script> $(document).ready(function(e) { $('#cmdlogin').click(function(e) { var u=$('#txtusername').val(); var p=$('#txtpassword').val(); if (u=='' p==''){ return false; $.post('logincek.php', { u:$('#txtusername').val(), p:$('#txtpassword').val(), function (data, status){ if (data==''){ document.location.href='administrator/index.php' alert(data); ); ); ); </script> </body> </html> 7. Logincek.php session_start();

13 include 'koneksi.php'; $u=$_post['u']; $p=$_post['p']; if ($db->cekrecord("select * from tbladmin where userku='$u' and passku='$p'")==true){ $_SESSION['sesipsikologiuser']=$u; $_SESSION['sesipsikologipass']=$p; echo ''; echo 'Terjadi kesalahan!'; 8. Registrasi.php <!doctype html> <html> <head> <meta charset="utf-8"> <title>perancangan APLIKASI SIMULASI PSIKOTEST BERBASIS WEB</title> <link rel="stylesheet" href="bootstrap/css/bootstrap.min.css"> <link rel="stylesheet" href="style.css"> <link rel="stylesheet" href="administrator/alert/css/jqueryconfirm.css"> <link rel="stylesheet" href="administrator/plugins/datepicker/datepicker3.css">

14 <script type="text/javascript" src="bootstrap/js/bootstrap.min.js"></script> <script src="js/jquery.min.js"></script> <script src="administrator/alert/js/jquery-confirm.js"></script> <script src="administrator/plugins/datepicker/bootstrapdatepicker.js"></script> </head> <body> <div id="wrapper"> <div id="header"> <div id="content"> <div class="row"> <div class="col-md-12"> <div class="panel panel-primary"> <div class="panel-heading">registrasi Peserta Baru <div class="panel-body"> <form name="form1" method="post" action="simpan.php"> <table width="100%" border="0" cellspacing="0" cellpadding="0" class="table"> <tbody> <tr> <td width="22%">nama</td> <td width="78%"><div class="col-md-10"><input type="text" name="txtnama" id="txtnama" class="form-control"></td> </tr> <tr> <td>j. Kelamin</td> <td><div class="col-md-6"><select name="txtjk" id="txtjk" class="form-control">

15 <option value="pria">pria</option> <option value="wanita">wanita</option> </select></td> </tr> <tr> <td>tempat & Tgl Lahir</td> <td><div class="col-md-8"><input type="text" name="txttempat" id="txttempat" class="form-control"><div class="col-md-4"><input type="text" name="txttgllahir" id="txttgllahir" class="form-control"></td> </tr> <tr> <td>alamat</td> <td><div class="col-md-12"><input type="text" name="txtalamat" id="txtalamat" class="form-control"></td> </tr> <tr> <td>pendidikan Terakhir</td> <td><div class="col-md-4"><select name="txtpendidikan" class="form-control" id="txtpendidikan"> <option value="sma">sma</option> <option value="d1">d1</option> <option value="d3">d3</option> <option value="s1">s1</option> <option value="s2">s2</option> </select></td> </tr> <tr> <td> </td>

16 <td><div class="col-md-5"><input type="text" name="txt " id="txt " class="form-control"></td> </tr> <tr> <td>password</td> <td><div class="col-md-5"><input type="password" name="txtpass1" id="txtpass1" class="form-control"></td> </tr> <tr> <td>re-tye Password</td> <td><div class="col-md-5"><input type="password" name="txtpass2" id="txtpass2" class="form-control"></td> </tr> <tr> <td> </td> <td><div class="col-md-12"><input name="cmdsimpan" type="submit" id="cmdsimpan" value="simpan" class="btn btnprimary"> <input name="cmdkembali" type="button" id="cmdkembali" value="kembali" class="btn btn-default"></td> </tr> </tbody> </table> </form>

17 <script> $(document).ready(function(e) { $('#txttgllahir').datepicker({format:'dd-mm-yyyy'); $('#cmdkembali').click(function(e) { document.location.href='index.php'; ); $('#cmdsimpan').click(function(e) { var nama=$('#txtnama').val(); if (nama==''){ $.alert({content:'nama belum diisi!'); return false; var tempat=$('#txttempat').val(); if (tempat==''){ $.alert({content:'tempat lahir belum diisi!'); return false; var tgllahir=$('#txttgllahir').val(); if (tgllahir==''){ $.alert({content:'tanggal lahir belum diisi!'); return false; var =$('#txt ').val(); if ( ==''){ $.alert({content:' belum diisi!'); return false; var pwd=$('#txtpass1').val(); if (pwd==''){

18 $.alert({content:'password belum diisi!'); return false; var pwd1=$('#txtpass2').val(); if (pwd2==''){ $.alert({content:'retype Password belum anda isi!'); return false; if (pwd1!=pwd2){ $.alert({content:'password tidak sama!'); return false; ); ); </script> </body> </html> 9. Regsukses.php <!doctype html> <html> <head> <meta charset="utf-8"> <title>perancangan APLIKASI SIMULASI PSIKOTEST BERBASIS WEB</title> <link rel="stylesheet" href="bootstrap/css/bootstrap.min.css"> <link rel="stylesheet" href="style.css">

19 <link rel="stylesheet" href="administrator/alert/css/jqueryconfirm.css"> <link rel="stylesheet" href="administrator/plugins/datepicker/datepicker3.css"> <script type="text/javascript" src="bootstrap/js/bootstrap.min.js"></script> <script src="js/jquery.min.js"></script> <script src="administrator/alert/js/jquery-confirm.js"></script> <script src="administrator/plugins/datepicker/bootstrapdatepicker.js"></script> </head> <body> <div id="wrapper"> <div id="header"> <div id="content"> <div class="row"> <div class="col-md-12"> <div class="alert alert-success" role="alert"><strong>registrasi Sukses!</strong> Terima kasih, data anda sudah disimpan. Untuk memulai simulai psikologi silahkan klik tombol dibawah <p><a href="index.php" class="btn btn-primary btn-sm">login</a> </body> </html>

20 10. Simpan.php include 'koneksi.php'; $nama=$_post['txtnama']; $jk=$_post['txtjk']; $tempat=$_post['txttempat']; $tgllahir=$_post['txttgllahir']; $alamat=$_post['txtalamat']; $pendidikan=$_post['txtpendidikan']; $ =$_post['txt ']; $pwd=$_post['txtpass1']; $tgl=$db->ubahtanggal($tgllahir); if ($db->cekrecord("select * from tblpeserta where ='$ '")==true){ echo ' sudah terdaftar, periksa kembali data anda!'; $qry=mysql_query("insert into tblpeserta (nama, jk, tempat, tgllahir, alamat, pendidikan, , password) values ('$nama', '$jk', '$tempat', '$tgl', '$alamat', '$pendidikan', '$ ', '$pwd')"); if ($qry){ echo "<script> document.location.href='regsukses.php'; </script>";

21 echo 'Terjadi kesalahan, silahkan hubungi panitia!'; 11. Simpanreg.php echo 'Sukses'; 12. Validuser.php session_start(); include 'koneksi.php'; $t =$_post['t ']; $pwd=$_post['pwd']; if ($db->cekrecord("select * from tblpeserta where ='$t ' and password='$pwd'")==true){ $id=$db->tampilrecord("tblpeserta", " ='$t '", "idpeserta"); $tgl=$db->tampilrecord("tblpeserta", " ='$t '", "tgllahir"); $_SESSION['sesiidpeserta']=$id; $_SESSION['sesitgllahir']=$tgl;

22 $idpeserta=$id; $qry=mysql_query("select * from tblujianpeserta where idpeserta='$idpeserta' order by idujian desc"); $jlh=mysql_num_rows($qry); if ($jlh>=1){ $data=mysql_fetch_array($qry); $idujian=$data['idujian']; #echo $idujian.' '.$idpeserta; $qry=mysql_query("update tblujianpeserta set ket='' where idpeserta='$idpeserta' and idujian='$idujian'"); if ($qry){ echo 'Gagal'; $qry=mysql_query("select * from tblujiankategori where idujian='$idujian'"); while ($data=mysql_fetch_array($qry)){ $kategori=$data['kategori']; $waktu=$data['waktu']; if ($db->cekrecord("select * from tblujianwaktu where idpeserta='$idpeserta' and idujian='$idujian' and kategori='$kategori'")==false){ $qrywaktu=mysql_query("insert into tblujianwaktu (idujian, idpeserta, kategori, waktu) values ('$idujian', '$idpeserta', '$kategori', '$waktu')"); if ($qrywaktu){

23 else echo "Gagal"; echo ''; echo 'Terjadi kesalahan!'; 13. Logout.php session_start(); unset($_session['sesiidpeserta']); unset($_session['sesitgllahir']); echo "<script> document.location.href='index.php'; </script>"; 14. Cekwaktu.php error_reporting("e_all ^ E_NOTICE"); session_start(); include '../koneksi.php'; $id=$_session['sesiidpeserta']; $skategori=$_session['sesikategori'];

24 $qry=mysql_query("select tblujian.idujian, tblujian.st, tblujianpeserta.idpeserta from tblujian INNER JOIN tblujianpeserta ON tblujian.idujian=tblujianpeserta.idujian where tblujianpeserta.idpeserta='$id' and tblujian.st='1' order by tblujian.idujian desc"); $jlh=mysql_num_rows($qry); if ($jlh>=1){ $dataujian=mysql_fetch_array($qry); $idujian=$dataujian[0]; $ket=$db->tampilrecord("tblujian", "idujian='$idujian'", "keterangan"); $jabatan=$db->tampilrecord("tblujian", "idujian='$idujian'", "jabatan"); if (isset($_session['sesikategori'])){ $waktu=$db->tampilrecord("tblujianwaktu", "idpeserta='$id' and idujian='$idujian' and kategori='$skategori'", "waktu"); $waktu--; $qry=mysql_query("update tblujianwaktu set waktu='$waktu' where idujian='$idujian' and idpeserta='$id' and kategori='$skategori'"); 15. Hasil.php #error_reporting("e_all ^ E_NOTICE"); session_start();

25 include '../koneksi.php'; $id=$_session['sesiidpeserta']; $qry=mysql_query("select * from tblujianpeserta where idpeserta='$id' order by idujian desc"); $jlh=mysql_num_rows($qry); if ($jlh>=1){ $data=mysql_fetch_array($qry); $idujian=$data['idujian']; $hasil=$data['ket']; $lulus=$data['lulus']; $nilai=$data['nilai']; $jlhkategori=$db->totalrecord("tblujiankategori", "idujian='$idujian'"); $hasil=str_replace('anda tidak lulus ujian', '', $hasil); $hasil=str_replace('.', ', ', $hasil); $score=(($nilai*$jlhkategori)/$jlhkategori)*10; #$score=$jlhkategori; if ($hasil<>''){ <div style="width:400px; margin-left:auto; margin-right:auto"> <div class="panel panel-primary"> <div class="panel-heading">hasil Ujian <div class="panel-body"> <!-- -->

26 if ($lulus>=1){ <div style="font-size:14px; color:#002cb9;">selamat! Anda Lulus Simulasi Psikotest <br> Score Anda : echo $score; <!-- --> <div> <div style="color:red; font-size:16px;">maaf Anda Gagal. <br> Anda tidak memenuhi kriteria yang telah ditetapkan.<br> Score Anda : echo $score; <br> Anda Gagal di bagian : echo $hasil; <br> Silahkan mencoba kembali! <!-- --> 16. Hasil.php #error_reporting("e_all ^ E_NOTICE"); session_start();

27 include '../koneksi.php'; $id=$_session['sesiidpeserta']; $qry=mysql_query("select * from tblujianpeserta where idpeserta='$id' order by idujian desc"); $jlh=mysql_num_rows($qry); if ($jlh>=1){ $data=mysql_fetch_array($qry); $idujian=$data['idujian']; $hasil=$data['ket']; $lulus=$data['lulus']; $nilai=$data['nilai']; $jlhkategori=$db->totalrecord("tblujiankategori", "idujian='$idujian'"); $hasil=str_replace('anda tidak lulus ujian', '', $hasil); $hasil=str_replace('.', ', ', $hasil); $score=(($nilai*$jlhkategori)/$jlhkategori)*10; #$score=$jlhkategori; if ($hasil<>''){ <div style="width:400px; margin-left:auto; margin-right:auto"> <div class="panel panel-primary"> <div class="panel-heading">hasil Ujian <div class="panel-body"> <!-- -->

28 if ($lulus>=1){ <div style="font-size:14px; color:#002cb9;">selamat! Anda Lulus Simulasi Psikotest <br> Score Anda : echo $score; <!-- --> <div> <div style="color:red; font-size:16px;">maaf Anda Gagal. <br> Anda tidak memenuhi kriteria yang telah ditetapkan.<br> Score Anda : echo $score; <br> Anda Gagal di bagian : echo $hasil; <br> Silahkan mencoba kembali! <!-- --> 17. Hasilakhir.php #error_reporting("e_all ^ E_NOTICE");

29 session_start(); include '../koneksi.php'; $idpeserta=$_session['sesiidpeserta']; echo $idpeserta; $qry=mysql_query("select * from tblujianpeserta where idpeserta='$idpeserta' order by idujian desc"); $jlh=mysql_num_rows($qry); if ($jlh>=1){ $data=mysql_fetch_array($qry); $idujian=$data['idujian']; $hasil=$data['ket']; $lulus=$data['lulus']; $nilai=$data['nilai']; $jlhkategori=$db->totalrecord("tblujiankategori", "idujian='$idujian'"); $hasil=str_replace('anda tidak lulus ujian', '', $hasil); $hasil=str_replace('.', ', ', $hasil); $score=($nilai*10)/$jlhkategori; #$score=$jlhkategori; exit; echo $idujian; $i=0; $qry=mysql_query("select * from tblujiankategori where idujian='$idujian'"); $k='';

30 while ($data=mysql_fetch_array($qry)){ $jlhlulus=$data['jlhlulus']; $kategori=$data['kategori']; $hasil=$db->hitungjawabanbenar($idujian, $idpeserta, $kategori); if ($hasil>=$jlhlulus){ $ket='selamat! Anda Lulus '; $k=$k.'anda tidak lulus ujian '.$kategori.'. '; $i++; # $jlhbenar=$db->jumlahrecord("select * from tbljawaban where idpeserta='$idpeserta' and idujian='$idujian' and st='1'"); if ($i<=0){ $query="update tblujianpeserta set ket='$ket', nilai='$jlhbenar', lulus='1' where idpeserta='$idpeserta' and idujian='$idujian'"; $query="update tblujianpeserta set ket='$k', nilai='$jlhbenar', lulus='0' where idpeserta='$idpeserta' and idujian='$idujian'"; $qryhasil=mysql_query($query); if ($qryhasil){

31 echo 'Sukses '; echo 'Gagal '; 18. Hitung.php session_start(); include '../koneksi.php'; $idpeserta=$_session['sesiidpeserta']; $qry=mysql_query("select tblujian.idujian, tblujian.st, tblujianpeserta.idpeserta from tblujian INNER JOIN tblujianpeserta ON tblujian.idujian=tblujianpeserta.idujian where tblujianpeserta.idpeserta='$id' and tblujian.st='1' order by tblujian.idujian desc"); $jlh=mysql_num_rows($qry); if ($jlh>=1){ $dataujian=mysql_fetch_array($qry); $idujian=$dataujian[0]; $ket=$db->tampilrecord("tblujian", "idujian='$idujian'", "keterangan"); $jabatan=$db->tampilrecord("tblujian", "idujian='$idujian'", "jabatan");

32 $i=0; $qry=mysql_query("select * from tblujiankategori where idujian='$id'"); $k=''; while ($data=mysql_fetch_array($qry)){ $jlhlulus=$data['jlhlulus']; $kategori=$data['kategori']; $idpeserta=$dataku['idpeserta']; $hasil=$db->hitungjawabanbenar($id, $idpeserta, $kategori); if ($hasil>=$jlhlulus){ $ket='selamat! Anda Lulus '; $k=$k.'anda tidak lulus ujian '.$kategori.'. '; $i++; # $jlhbenar=$db->jumlahrecord("select * from tbljawaban where idpeserta='$dataku[idpeserta]' and idujian='$id' and st='1'"); if ($i<=0){ $query="update tblujianpeserta set ket='$ket', nilai='$jlhbenar', lulus='1' where idpeserta='$dataku[idpeserta]' and idujian='$id'";

33 $query="update tblujianpeserta set ket='$k', nilai='$jlhbenar', lulus='0' where idpeserta='$dataku[idpeserta]' and idujian='$id'"; $qryhasil=mysql_query($query); if ($qryhasil){ echo 'Sukses '; echo 'Gagal '; 19. Pilih.php include '../koneksi.php'; $nilai=$_post['nilai']; $qry=mysql_query("update tbljawaban set jwb='0' where idjawaban='$nilai'"); if ($qry){ #echo 'Sukses'; echo 'Gagal';

34 20. Pilihkategori.php session_start(); $kategori=$_post['kategori']; $_SESSION['sesikategori']=$kategori; echo ''; 21. Ulangi.php session_start(); include '../koneksi.php'; $id=$_session['sesiidpeserta']; $qry=mysql_query("select tblujian.idujian, tblujian.st, tblujianpeserta.idpeserta from tblujian INNER JOIN tblujianpeserta ON tblujian.idujian=tblujianpeserta.idujian where tblujianpeserta.idpeserta='$id' and tblujian.st='1'"); $jlh=mysql_num_rows($qry); if ($jlh>=1){ $dataujian=mysql_fetch_array($qry); $idujian=$dataujian[0]; $ket=$db->tampilrecord("tblujian", "idujian='$idujian'", "keterangan");

35 $jabatan=$db->tampilrecord("tblujian", "idujian='$idujian'", "jabatan"); $qry=mysql_query("select * from tblujiankategori where idujian='$idujian'"); while ($data=mysql_fetch_array($qry)){ $kategori=$data['kategori']; $waktu=$data['waktu']; $qrywaktu=mysql_query("update tblujianwaktu set waktu='$waktu' where idpeserta='$id' and idujian='$idujian' and kategori='$kategori'"); $qry=mysql_query("update tblujianpeserta set ket='' where idpeserta='$id' and idujian='$idujian'"); $qry=mysql_query("update tbljawaban set jwb='0' where idujian='$idujian' and idpeserta='$id'"); 22. Zindex.php #error_reporting("e_all ^ E_NOTICE"); session_start(); include '../koneksi.php'; $id=$_session['sesiidpeserta']; <div class="col-md-4"> <div class="panel panel-default">

36 <div class="panel-heading">pilih Kategori <div class="panel-body"> $qry=mysql_query("select tblujian.idujian, tblujian.st, tblujianpeserta.idpeserta from tblujian INNER JOIN tblujianpeserta ON tblujian.idujian=tblujianpeserta.idujian where tblujianpeserta.idpeserta='$id' and tblujian.st='1' order by tblujian.idujian desc"); $jlh=mysql_num_rows($qry); if ($jlh>=1){ $dataujian=mysql_fetch_array($qry); $idujian=$dataujian[0]; $ket=$db->tampilrecord("tblujian", "idujian='$idujian'", "keterangan"); $jabatan=$db->tampilrecord("tblujian", "idujian='$idujian'", "jabatan"); <table width="100%" border="0" cellspacing="0" cellpadding="0" class="table"> <tbody> #echo $idujian.' '.$id; $qry=mysql_query("select * from tblujianwaktu where idujian='$idujian' and idpeserta='$id' and waktu>0 order by kategori asc"); while ($data=mysql_fetch_array($qry)){ <tr>

37 <td><a href="#" class="btn btn-warning btn-block cmdpilih" id=" echo $data['kategori']; "> echo $data['kategori']; </a></td> </tr> </tbody> </table> <div class="col-md-8"> echo '<div class="alert alert-danger" role="alert"> <h3>petunjuk Soal:</h3> <p> Soal terdiri dari 3 kategori.<br> Anda dapat beralih ke soal berikutnya secara otomatis ketika menjawab pertanyaan. <br> Apabila soal sudah terjawab semua, anda dapat memperbaiki jawaban anda sesuai nomor urutannya, nomor urutannya berada pada sisi bawah. </p> <p><a href="logout.php" class="btn btn-danger btn-sm">logout</a> <a href="#" class="btn btn-danger btn-sm" id="cmdulangi">ulangi</a> </p> '; <a href="#" class="btn btn-primary btn-sm" id="cmdhasil">hasil</a>

38 <div id="hasilakhir"> <script> $(document).ready(function(e) { $('.cmdpilih').click(function(e) { var nilai=$(this).attr('id'); $.post('home/pilihkategori.php', { kategori:nilai, function (data, status){ document.location.href='home.php'; ); ); $('#cmdulangi').click(function(e) { $.post('home/ulangi.php', {, function (data, status){ document.location.href='home.php?page=zindex'; ); ); $('#cmdhasil').click(function(e) { $.post('home/hasilakhir.php', {, function (data, status){ ); $('#hasilakhir').load('home/hasil.php'); ); ); </script

39 23. Cekwaktu.php session_start(); include '../koneksi.php'; $id=$_session['sesiidpeserta']; $waktu=$db->tampilrecord("tblpretesthasil", "idpeserta='$id' and st='1'", "waktu"); $idhasilpretest=0; $idhasilpretest=$db->tampilrecord("tblpretesthasil", "idpeserta='$id' and st='1'", "idhasilpretest"); #echo $waktu; if ($idhasilpretest!=0 and $waktu>=0){ $waktu--; $qry=mysql_query("update tblpretesthasil set waktu='$waktu' where idhasilpretest='$idhasilpretest'"); if ($waktu<=0){ $qry=mysql_query("update tblpretesthasil set st='0', waktu='0' where idhasilpretest='$idhasilpretest'"); 24. Hitung.php session_start(); include '../koneksi.php'; $id=$_session['sesiidpeserta'];

40 $jabatan=$_get['jabatan']; $jlhsoal=0; $jbenar=0; $ket=''; $stlulus=0; $qry=mysql_query("select * from tblpretestpengaturan where jabatan='$jabatan'"); while ($data=mysql_fetch_array($qry)){ $jlhlulus=$data['lulus']; $jlhsoal=$jlhsoal+$data['jlh']; $kategori=$data['kategori']; $jlhbenar=$db->totalrecord("tblpretest", "idpeserta='$id' and jabatan='$jabatan' and kategori='$kategori' and st='1'"); if ($jlhbenar>=$jlhlulus){ $ket=$ket.$data['kategori'].' '; $stlulus=1; # # #echo "ST LULUS ".$stlulus; #echo " JUMLAH BENAR ".$jlhbenar; $jbenar=$db->totalrecord("tblpretest", "idpeserta='$id' and jabatan='$jabatan' and st='1'"); $nilai=($jbenar/$jlhsoal) * 100; #

41 if ($stlulus>=1){ $keterangan="maaf anda tidak lulus. Anda gagal pada kategori ".$ket; $klulus=0; $keterangan="selamat! Anda lulus"; $klulus=1; $qry=mysql_query("update tblpretesthasil set hasil='$keterangan', nilai='$nilai', stlulus='$klulus' where idpeserta='$id' and jabatan='$jabatan'"); if ($qry){ echo "<script>document.location.href='tampilhasil.php?jabatan=$jabatan' ; </script>"; echo 'Terjadi kesalahan!'; 25. Pilihjabatan.php session_start(); include '../koneksi.php';

42 $idpeserta=$_session['sesiidpeserta']; $jabatan=$_get['jabatan']; $_SESSION['sesijabatan']=$jabatan; # $qry=mysql_query("delete from tblpretest where idpeserta='$idpeserta' and jabatan='$jabatan'"); if($qry){ echo "Terjadi kesalahan!"; exit; # $waktu=0; $qry=mysql_query("select * from tblpretestpengaturan where jabatan='$jabatan'"); while ($dataku=mysql_fetch_array($qry)){ $jlhsoal=$dataku['jlh']; $kategori=$dataku['kategori']; $waktu=$waktu+$dataku['waktu']; # $qrysoal=mysql_query("select * FROM tblsoal where kategori='$dataku[kategori]' and jabatan='$jabatan' ORDER BY RAND() LIMIT ".$jlhsoal); while ($datasoal=mysql_fetch_array($qrysoal)){ $idsoal=$datasoal['idsoal']; $db->simpansoalpretest($idpeserta, $idsoal, $kategori, $jabatan);

43 if ($db->cekrecord("select * from tblpretesthasil where idpeserta='$idpeserta' and jabatan='$jabatan'")==true){ $qry=mysql_query("update tblpretesthasil set st='0' where idpeserta='$idpeserta'"); $qry=mysql_query("update tblpretesthasil set hasil='', nilai='', waktu='$waktu', st='1' where idpeserta='$idpeserta' and jabatan='$jabatan'"); if ($qry){ echo "Gagal Edit"; $qry=mysql_query("insert into tblpretesthasil (idpeserta, jabatan, hasil, nilai, waktu, st) values ('$idpeserta', '$jabatan', '', '0', '$waktu', '1')"); if ($qry){ echo "gagal tambah"; echo "<script> document.location.href='index.php'; </script>";

44 26. Soal.php error_reporting("e_all ^ E_NOTICE"); session_start(); include '../koneksi.php'; $id=$_session['sesiidpeserta']; <div class="col-md-12"> $qry=mysql_query("select * from tblpretesthasil where idpeserta='$id' and st='1'"); $jlh=mysql_num_rows($qry); if ($jlh>=1){ $jabatan=$db->tampilrecord("tblpretesthasil", "idpeserta='$id' and st='1'", "jabatan"); <!-- --> <p style="font-family:lucida Sans Cambria, 'Hoefler Text', 'Liberation Serif', Times, 'Times New Roman', serif; fontsize:16px; color:#b30002; font-weight:bold; texttransform:uppercase" align="center">jabatan : echo strtoupper($jabatan); </p> <p align="center"> <div style="width:280px; margin-left:auto; margin-right:auto"> $waktu=$db->tampilrecord("tblpretesthasil", "idpeserta='$id' and st='1'", "waktu"); if ($waktu=='') $waktu=0;

45 if ($waktu<=0){ echo "<script> document.location.href='index.php?page=hasil&jabatan=$jabatan'; </script>"; <div class="alert alert-warning" role="alert" style="textalign:center"> <small>waktu</small> <h1 align="center"> echo $waktu; </h1> </p> <!-- --> $qry=mysql_query("select * from tblpretest where idpeserta='$id' and jabatan='$jabatan' and jwb='0' order by idpretest asc"); $jlhsoal=mysql_num_rows($qry); if ($jlhsoal>=1){ $data=mysql_fetch_array($qry); $soal=$db->tampilrecord("tblsoal", "idsoal='$data[idsoal]'", "soal"); $jwba=$db->tampilrecord("tblsoal", "idsoal='$data[idsoal]'", "jwb_a"); $jwbb=$db->tampilrecord("tblsoal", "idsoal='$data[idsoal]'", "jwb_b"); $jwbc=$db->tampilrecord("tblsoal", "idsoal='$data[idsoal]'", "jwb_c");

46 $jwbd=$db->tampilrecord("tblsoal", "idsoal='$data[idsoal]'", "jwb_d"); $kelompok=$db->tampilrecord("tblsoal", "idsoal='$data[idsoal]'", "kategori"); <h3 style="margin-top:5px;" align="center">soal echo strtoupper($kelompok); </h3> <div style="width:100%; border-bottom:solid 2px #477E00;"> <table width="100%" border="0" cellspacing="0" cellpadding="0" class="table" style="font-size:16px; font-weight:bold;"> <tbody> <tr> <td colspan="2"><div style="font-size:14px; color:#01118f; font-weight:bold;">no Soal : echo $_SESSION['nosoal']; </td> </tr> <tr> <td colspan="2"> echo $soal; <input type="hidden" name="txtidsoal" id="txtidsoal" value=" echo $data[idsoal]; "> <input type="hidden" name="txtidpeserta" id="txtidpeserta" value=" echo $id;"> <input name="txtidujian" type="hidden" id="txtidujian" value=" echo $idujian; "></td> </tr> <tr> <td width="3%"><input type="button" name="a" id="a" value="a" class="btn btn-primary cmdok"></td> <td width="97%"> echo $jwba; </td> </tr> <tr>

47 <td><input type="button" name="b" id="b" value="b" class="btn btn-primary cmdok"></td> <td> echo $jwbb; </td> </tr> <tr> <td><input type="button" name="c" id="c" value="c" class="btn btn-primary cmdok"></td> <td> echo $jwbc; </td> </tr> <tr> <td><input type="button" name="d" id="d" value="d" class="btn btn-primary cmdok"></td> <td> echo $jwbd; </td> </tr> </tbody> </table> <p> <div style="font-size:16px; margin-bottom:5px; margin-top:10px; border-top:solid 1px #B0B0B0;">No Soal <ul class="pagination" style="margin:0"> $no=0; $qry=mysql_query("select * from tblpretest where idpeserta='$id' and jabatan='$jabatan' order by idsoal asc"); while ($data=mysql_fetch_array($qry)){ $no++;

48 <li><a href="#" class="cmdpilih" id=" echo $data['idpretest']; "> echo $no; </a> </li> </ul> <br> <a href="index.php?page=zindex" class="btn btn-default btnsm">kembali</a> </p> $jabatan=$_session['sesijabatan']; echo '<div class="alert alert-danger" role="alert"> <h3>petunjuk Soal:</h3> <p> Soal terdiri dari 3 kategori.<br> Anda dapat beralih ke soal berikutnya secara otomatis ketika menjawab pertanyaan. <br> Apabila soal sudah terjawab semua, anda dapat memperbaiki jawaban anda sesuai nomor urutannya, nomor urutannya berada pada sisi bawah. </p> <p> <a href="hitung.php?jabatan='.$jabatan.'" class="btn btn-primary btn-sm">lihat Hasil</a> <a href="index.php?page=ulang" class="btn btn-warning btnsm">ulangi</a> <a href="../logout.php" class="btn btn-danger btn-sm">logout</a> ';

49 <script> $(document).ready(function(e) { $('.cmdok').click(function(e) { var nilai=$(this).attr('id'); $.post('simpan.php', { idujian:$('#txtidujian').val(), idsoal:$('#txtidsoal').val(), idpeserta:$('#txtidpeserta').val(), nilai:nilai, function (data, status){ if (data==''){ $.alert({content:data); ); ); $('.cmdpilih').click(function(e) { var nilai=$(this).attr('id'); $.post('pilih.php', { nilai:nilai, function (data, status){

50 if (data==''){ $.alert({content:data); ); ); ); </script> 27. Tampilhasil.php error_reporting("e_all ^ E_NOTICE"); include '../cekuser.php'; include '../koneksi.php'; $idpeserta=$_session['sesiidpeserta']; $nama=$db->tampilrecord("tblpeserta", "idpeserta='$idpeserta'", "nama"); $t =$db->tampilrecord("tblpeserta", "idpeserta='$idpeserta'", " "); $jabatan=$_session['sesijabatan']; $pretest=$db->tampilrecord("tblpengaturan", "kriteria='pretest'", "nilai"); if ($pretest<=0){ echo "<script> document.location.href='../home.php'; </script>";

51 # # # <!doctype html> <html> <head> <meta charset="utf-8"> <title>perancangan APLIKASI SIMULASI PSIKOTEST BERBASIS WEB</title> <link rel="stylesheet" href="../bootstrap/css/bootstrap.min.css"> <link rel="stylesheet" href="../style-home.css"> <link rel="stylesheet" href="../administrator/alert/css/jqueryconfirm.css"> <script type="text/javascript" src="../bootstrap/js/bootstrap.min.js"></script> <script src="../js/jquery.min.js"></script> <script src="../administrator/alert/js/jqueryconfirm.js"></script> </head> <body> <div id="wrapper"> <div id="header"> <div id="container">

52 <div class="row" style="padding:10px;"> <div class="panel panel-info"> <div class="panel-heading"> <h4 class="panel-title">simulasi Psikotest</h4> <div class="panel-body"> <div class="col-md-6 col-xs-offset-3"> <!-- --> <div class="panel panel-primary"> <div class="panel-heading"> <h4 class="panel-title">hasil Ujian</h4> <div class="panel-body"> $nilai=$db->tampilrecord("tblpretesthasil", "idpeserta='$idpeserta' and jabatan='$jabatan'", "nilai"); $status=$db->tampilrecord("tblpretesthasil", "idpeserta='$idpeserta' and jabatan='$jabatan'", "stlulus"); $keterangan=$db->tampilrecord("tblpretesthasil", "idpeserta='$idpeserta' and jabatan='$jabatan'", "hasil"); $status>=1? $stx="<div class='label label-success'>lulus" : $stx="<div class='label label-danger'>tidak Lulus"; if ($status>=1){ $ket="<div class='alert alertsuccess'><h3>$keterangan</h3>";

53 $ket="<div class='alert alertdanger'><h4>$keterangan</h4>"; <table width="100%" border="0" cellspacing="0" cellpadding="0" class="table table-striped"> <tbody> <tr> <td width="26%"><em>nama</em></td> <td width="74%"> echo $nama; </td> </tr> <tr> <td><em>jabatan diuji</em></td> <td> echo $jabatan; </td> </tr> <tr> <td><em>nilai</em></td> <td> echo $nilai; </td> </tr> <tr> <td><em>status</em></td> <td> echo $stx; </td> </tr> <tr> <td><em>keterangan</em></td> <td> echo $ket; </td> </tr> <tr> <td> </td>

54 <td><a href="index.php" class="btn btn-primary btnsm">ulangi</a></td> </tr> </tbody> </table> <!-- --> </body> </html> 28. Administrator/menu.php <ul class="sidebar-menu"> <li class="header">main NAVIGATION</li> <li class="active"> <a href="index.php"> <i class="fa fa-dashboard"></i> <span>dashboard</span> <i class="fa fa-angle-left pull-right"></i> </a> </li>

55 <li class="header">pengaturan PESERTA</li> <li><a href="index.php?page=peserta"><i class="fa fa-th"></i> <span>data Peserta</span></a></li> $pretest=$db->tampilrecord("tblpengaturan", "kriteria='pretest'", "nilai"); if ($pretest>=1){ echo '<li><a href="index.php?page=ujian"><i class="fa facircle-o text-red"></i> <span>ujian</span></a></li>'; <li><a href="index.php?page=dataujian"><i class="fa fa-circleo text-red"></i> <span>data Ujian</span></a></li> <li class="header">soal</li> <li><a href="index.php?page=kategori"><i class="fa fa-circle-o text-red"></i> <span>kategori</span></a></li> <li><a href="index.php?page=jabatan"><i class="fa fa-circle-o text-red"></i> <span>jabatan</span></a></li> <li><a href="index.php?page=_soal"><i class="fa fa-circle-o text-yellow"></i> <span>data Soal</span></a></li> <li><a href="index.php?page=gambar"><i class="fa fa-circle-o text-yellow"></i> <span>file Gambar</span></a></li> </ul> 29. Administrator/isi.php $page=$_get['page'];

56 $sfile=$_get["sfile"]; if ($page==''){ include 'page/index.php'; if ($sfile=='' or!isset($sfile)){ if (file_exists('page/'.$page.'/index.php')){ include 'page/'.$page.'/index.php'; include 'error404.html'; if (file_exists('page/'.$page.'/'.$sfile.'.php')){ include 'page/'.$page.'/'.$sfile.'.php'; include 'error404.html'; 30. Asministrator/cetak.php ini_set("memory_limit","1000m"); require_once("dompdf_config.inc.php"); $namafile=$_post['namafile'];

57 if ( isset( $_POST["html"] )) { if ( get_magic_quotes_gpc() ) $_POST["html"] = stripslashes($_post["html"]); $dompdf = new DOMPDF(); $dompdf->load_html($_post["html"]); $dompdf->set_paper("a4", "potrait"); $dompdf->render(); $dompdf->stream($namafile, array("attachment" => false)); exit(0); 31. Administrator/logout.php session_start(); unset($_session['sesipsikologiuser']); unset($_session['sesipsikologipass']); echo "<script> document.location.href='../index.php'; </script>";

LISTING PROGRAM. 1. Tampilan Awal. 2. Menu Login. Public Class Awal

LISTING PROGRAM. 1. Tampilan Awal. 2. Menu Login. Public Class Awal LISTING PROGRAM 1. Tampilan Awal Public Class Awal Private Sub Timer1_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer1.Tick ProgressBar1.Increment(10) If ProgressBar1.Value

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

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

KARTU BIMBINGAN TUGAS AKHIR MAHASISWA PEMBAHASAN PADA ASISTENSI MENGENAI, PADA BAB

KARTU BIMBINGAN TUGAS AKHIR MAHASISWA PEMBAHASAN PADA ASISTENSI MENGENAI, PADA BAB 62 KEMENTERIAN PENDIDIKAN NASIONAL UNIVERSITAS SUMATERA UTARA FAKULTAS MATEMATIKA DAN ILMU PENGETAHUAN ALAM Jl. Bioteknologi No.1 Kampus USU Padang Bulan Medan 20155 Telp. (061) 8211050, 8214290, Fax (061)

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

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

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

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

Kartu Bimbingan Tugas Akhir Mahasiswa

Kartu Bimbingan Tugas Akhir Mahasiswa KEMENTRIAN PENDIDIKAN DAN KEBUDAYAAN UNIVERSITAS SUMATERA UTARA FAKULTAS MATEMATIKA DAN ILMU PENGETAHUAN ALAM Jln. Bioteknologi No. 1 Kampus USU Padang Bulan Medan-20155 Telp. (061) 8214290, 8211212, 8211414

More information

LAMPIRAN Kode Program

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

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

APLIKASI BERITA DENGAN PHP DAN MYSQL

APLIKASI BERITA DENGAN PHP DAN MYSQL APLIKASI BERITA DENGAN PHP DAN MYSQL Merancang Struktur Database Membuat File Koneksi Database Membuat Halaman Input Berita Menampilkan Berita Terbaru di Halaman Depan Menampilkan Berita Lengkap Membuat

More information

LAMPIRAN. a. Kode Program Untuk Halaman Cari Data Proyek

LAMPIRAN. a. Kode Program Untuk Halaman Cari Data Proyek LAMPIRAN 1. Kode Program a. Kode Program Untuk Halaman Cari Data Proyek

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

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

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

/******************** Tunable parameters: ********************/

/******************** Tunable parameters: ********************/ 1. Smartass2.c / drivers/cpufreq/cpufreq_smartass2.c Copyright (C) 2010 Google, Inc. This software is licensed under the terms of the GNU General Public License version 2, as published by the Free Software

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

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. SetoransController

Lampiran. SetoransController 67 Lampiran SetoransController using System; using System.Collections.Generic; using System.Data; using System.Data.Entity; using System.Linq; using System.Net; using System.Web; using System.Web.Mvc;

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

ゼミ 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

Lampiran 1: Struktur Organisasi PT. Argo Manunggal Triasta

Lampiran 1: Struktur Organisasi PT. Argo Manunggal Triasta Lampiran 1: Struktur Organisasi PT. Argo Manunggal Triasta 1 Lampiran 2 A : Flowchart dalam Prosedur Kas Keil PT. Argo Manunggal Triasta Lampiran 2 A : Flowchart dalam Prosedur Laporan Kas Keil PT. Argo

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

School of Computer Science and Software Engineering

School of Computer Science and Software Engineering 1. C 2. B 3. C B 4. B 5. B 6. B 7. C (should be getelementsbyid case sensitive) 8. A 9. B 10. D 11. B 12. A 13. A 14. D 15. C 16. D 17. A 18. C 19. A 20. D P a g e 2 of 13 Section B: Long Answer Questions

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

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

FIRST TIME LOGIN & SELF REGISTRATION USER GUIDE LOG MASUK KALI PERTAMA & PENDAFTARAN SENDIRI PANDUAN PENGGUNA

FIRST TIME LOGIN & SELF REGISTRATION USER GUIDE LOG MASUK KALI PERTAMA & PENDAFTARAN SENDIRI PANDUAN PENGGUNA FIRST TIME LOGIN & SELF REGISTRATION USER GUIDE LOG MASUK KALI PERTAMA & PENDAFTARAN SENDIRI PANDUAN PENGGUNA Getting Started Step by Step Guide to Supplier First Time Login and Self Registration Persediaan

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 LISTING PROGRAM 1. Listing Pembuka Dim strado$ Dim n As Integer Private Sub Close_Click() End Private Sub Command1_Click() If Option1.Value = True Then Search.Show If Option2.Value = True

More information

UNIVERSITI SAINS MALAYSIA. CMT322/CMM323 Web Engineering & Technologies [Kejuruteraan & Teknologi Web]

UNIVERSITI SAINS MALAYSIA. CMT322/CMM323 Web Engineering & Technologies [Kejuruteraan & Teknologi Web] UNIVERSITI SAINS MALAYSIA First Semester Examination 2014/2015 Academic Session December 2014/January 2015 CMT322/CMM323 Web Engineering & Technologies [Kejuruteraan & Teknologi Web] Duration : 2 hours

More information

Patron- Driven Expedited Cataloging Enhancement to WebPAC Pro

Patron- Driven Expedited Cataloging Enhancement to WebPAC Pro Patron- Driven Expedited Cataloging Enhancement to WebPAC Pro Prepared by Steven Bernstein Project Description This enhancement to the Innovative Millennium ILS provides users with a direct method for

More information

MANAGE COURSE RESOURCES LABEL TEXT PAGE URL BOOK FILE FOLDER IMS CONTENT PACKAGE

MANAGE COURSE RESOURCES LABEL TEXT PAGE URL BOOK FILE FOLDER IMS CONTENT PACKAGE MANAGE COURSE RESOURCES LABEL TEXT PAGE URL BOOK FILE FOLDER IMS CONTENT PACKAGE Edit summary Edit tajuk Ke kanan Ke atas/bawah NOTA: Klik untuk sembunyikan isi kandungan. Klik untuk padam/menghapus isi

More information

1.2 * allow custom user list to be passed in * publish changes to a channel

1.2 * allow custom user list to be passed in * publish changes to a channel ToDoList /*** USAGE: ToDoList() Embed a TODO-list into a page. The TODO list allows users to cre Items that are due are highlighted in yellow, items passed due ar list can be added to any page. The information

More information

ToDoList. 1.2 * allow custom user list to be passed in * publish changes to a channel ***/

ToDoList. 1.2 * allow custom user list to be passed in * publish changes to a channel ***/ /*** USAGE: ToDoList() Embed a TODO-list into a page. The TODO list allows users to create new items, assign them to other users, and set deadlines. Items that are due are highlighted in yellow, items

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

ssk 2023 asas komunikasi dan rangkaian TOPIK 4.0 PENGALAMATAN RANGKAIAN Minggu 11

ssk 2023 asas komunikasi dan rangkaian TOPIK 4.0 PENGALAMATAN RANGKAIAN Minggu 11 ssk 2023 asas komunikasi dan rangkaian TOPIK 4.0 PENGALAMATAN RANGKAIAN Minggu 11 PENILAIAN & KULIAH Kuliah Tugasan Ujian Teori Ujian Amali Isi kandungan 4.8 Menunjukkan asas pengiraan o Subnet Mask o

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

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

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

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

KODE PROGRAM. 1. Umum

KODE PROGRAM. 1. Umum LAMPIRAN 91 KODE PROGRAM 1. Umum konsultasi.php cek gejala yang balita Anda alami... Jika gejala yang dialami tidak

More information

주소록만들기 주소록. Input 페이지 Edit 페이지 Del 페이지

주소록만들기 주소록. Input 페이지 Edit 페이지 Del 페이지 주소록프로젝트 주소록만들기 주소록 List 페이지 Input 페이지 Edit 페이지 Del 페이지 Inputpro 페이지 Editpro 페이지 Address_Input.html 주소입력페이지 td,li,input{font-size:9pt} 주소입력

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

Denes Kubicek. Oracle ACE APEX Developer of the Year 2008

Denes Kubicek. Oracle ACE APEX Developer of the Year 2008 Denes Kubicek Oracle ACE APEX Developer of the Year 2008 Blog & Tools at: http://www.deneskubicek.blogspot.com/ http://apex.oracle.com/pls/otn/f?p=31517:1 http://www.opal-consulting.de Create Web 2.0 Applications

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

Purpose of this doc. Most minimal. Start building your own portfolio page!

Purpose of this doc. Most minimal. Start building your own portfolio page! Purpose of this doc There are abundant online web editing tools, such as wordpress, squarespace, etc. This document is not meant to be a web editing tutorial. This simply just shows some minimal knowledge

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

Manual Pengguna. PCN Online Service Fulfillment System

Manual Pengguna. PCN Online Service Fulfillment System System 1 Subjek Muka Surat 1) CARTA ALIR SISTEM 2 2) PERMOHONAN OLEH AGENSI 3 3) PENGESAHAN PERMOHONAN OLEH MAMPU 8 4) LAMPIRAN 13 2 Carta alir sistem 3 PERMOHONAN OLEH AGENSI 4 Membuat permohonan baru

More information

CSS CSS how to display to solve a problem External Style Sheets CSS files CSS Syntax

CSS CSS how to display to solve a problem External Style Sheets CSS files CSS Syntax CSS CSS stands for Cascading Style Sheets Styles define how to display HTML elements Styles were added to HTML 4.0 to solve a problem External Style Sheets can save a lot of work External Style Sheets

More information

</div> </form> </div> <div class="col-xs-6 col-sm-6 col-md-6 collg-6">

</div> </form> </div> <div class=col-xs-6 col-sm-6 col-md-6 collg-6> LIST CODING include "template/header.php"; class="row"> class="col-md-6 co-xs-6"> buat Surat Perintah class="form-group"> nip

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

Lab 7 Introduction to MySQL

Lab 7 Introduction to MySQL Lab 7 Introduction to MySQL Objectives: During this lab session, you will - Learn how to access the MySQL Server - Get hand-on experience on data manipulation and some PHP-to-MySQL technique that is often

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 Kode program frmbrowse (frmbrowse.frm) Public strsql As String Public xreturn As String Public xreturnname As String Public xreturnaddress As String Public cfilter As Integer

More information

Bootstrap 1/20

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

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

Creating a Job Aid using HTML and CSS

Creating a Job Aid using HTML and CSS Creating a Job Aid using HTML and CSS In this tutorial we will apply what we have learned about HTML and CSS. We will create a web page containing a job aid about how to buy from a vending machine. Optionally,

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

LAMPIRAN A: LISTING PROGRAM

LAMPIRAN A: LISTING PROGRAM LAMPIRAN A: LISTING PROGRAM Index.php ticketing Application

More information

What are all these divs? Some empty? No use of CSS Cascade (text-decoration) Duplicated properties (padding in navitem) Unreadable Messy

What are all these divs? Some empty? No use of CSS Cascade (text-decoration) Duplicated properties (padding in navitem) Unreadable Messy Site Redesign Building a site using semantic XHTML and CSS Analysis of existing markup Internal style sheet Poor names (not meaningful) Terribly poor CSS Style in with content Poor names Poor layout Messy

More information

Chapter4: HTML Table and Script page, HTML5 new forms. Asst. Prof. Dr. Supakit Nootyaskool Information Technology, KMITL

Chapter4: HTML Table and Script page, HTML5 new forms. Asst. Prof. Dr. Supakit Nootyaskool Information Technology, KMITL Chapter4: HTML Table and Script page, HTML5 new forms Asst. Prof. Dr. Supakit Nootyaskool Information Technology, KMITL Objective To know HTML5 creating a new style form. To understand HTML table benefits

More information

PENGELUARAN PERAKUAN KEKOMPETENAN DAN PERAKUAN KECEKAPAN BARU MENGIKUT STCW 1978, SEPERTI PINDAAN

PENGELUARAN PERAKUAN KEKOMPETENAN DAN PERAKUAN KECEKAPAN BARU MENGIKUT STCW 1978, SEPERTI PINDAAN NOTIS PERKAPALAN MALAYSIA MALAYSIA SHIPPING NOTICE JABATAN LAUT MALAYSIA Marine Department of Malaysia Ibu Pejabat Laut, Peti Surat 12, 42007 Pelabuhan Klang. Tel: 03-33467777 Fax: 03-3168 5289, 3165 2882

More information

UJIAN AKHIR SEMESTER TEKNIK INFORMATIKA SEKOLAH TINGGI TEKNOLOGI DUTA BANGSA

UJIAN AKHIR SEMESTER TEKNIK INFORMATIKA SEKOLAH TINGGI TEKNOLOGI DUTA BANGSA UJIAN AKHIR SEMESTER TEKNIK INFORMATIKA SEKOLAH TINGGI TEKNOLOGI DUTA BANGSA Dosen Pembimbing : Dedi W ST,. MM Nama : Elly Sunandy NIM : 13158279 Pemrograman Terstruktur Membuat program dengan Delphi 7

More information

Listing Program. return false; return true; } </script> </body> </html>

Listing Program. return false; return true; } </script> </body> </html> Listing Program koneksi.php $mysql_user="root"; $mysql_password=""; $mysql_database="korpri"; $mysql_host="localhost"; $koneksi_db = mysql_connect($mysql_host, $mysql_user, $mysql_password); mysql_select_db($mysql_database,

More information

Tutorial, Source code, Request Program Visual Basic

Tutorial, Source code, Request Program Visual Basic Tutorial, Source code, Request Program Visual Basic Oleh : Moh. A Azis Membuat Form Data Barang Program Persediaan Barang Form Data Barang digunakan untuk menyimpan data barang dan memberikan info mengenai

More information

5 Snowdonia. 94 Web Applications with C#.ASP

5 Snowdonia. 94 Web Applications with C#.ASP 94 Web Applications with C#.ASP 5 Snowdonia In this and the following three chapters we will explore the use of particular programming techniques, before combining these methods to create two substantial

More information

HTML BEGINNING TAGS. HTML Structure <html> <head> <title> </title> </head> <body> Web page content </body> </html>

HTML BEGINNING TAGS. HTML Structure <html> <head> <title> </title> </head> <body> Web page content </body> </html> HTML BEGINNING TAGS HTML Structure Web page content Structure tags: Tags used to give structure to the document.

More information

src1-malan/ajax/ajax1.html ajax1.html Gets stock quote from quote1.php via Ajax, displaying result with alert().

src1-malan/ajax/ajax1.html ajax1.html Gets stock quote from quote1.php via Ajax, displaying result with alert(). src1-malan/ajax/ajaxhtml 1 1 1 1 1 2 2 2 2 2 2 2 2 30. 3 3 3 3 3 3 3 3 3 40. 4 4 4 4 4 4 4 4 ajaxhtml Gets stock quote from quotephp via Ajax, displaying result with alert(). Building Mobile Applications

More information

PERU BAHAN PERKHIDMATAN KREDIT DAN PERBANKAN ARAHAN KERJA UNIT KOMPUTER. Tatacara Proses AGM03. BPKP/KJAK-104 Bilangan Semakan : 0 Tarikh :

PERU BAHAN PERKHIDMATAN KREDIT DAN PERBANKAN ARAHAN KERJA UNIT KOMPUTER. Tatacara Proses AGM03. BPKP/KJAK-104 Bilangan Semakan : 0 Tarikh : ARAHAN KERJA UNIT KOMPUTER Tatacara Proses AGM03 BPKP/KJAK-104 Bilangan Semakan : 0 Tarikh : 30.09.13 Disediakan oleh :- Disahkan oleh ;- Pengurus PERU BAHAN Ubahan Muka surat Tarikh Keterangan Diluluskan

More information

PENDAFTARAN KURSUS SEMESTER 1 (DEP/DEE) SESI DIS 2017

PENDAFTARAN KURSUS SEMESTER 1 (DEP/DEE) SESI DIS 2017 PENDAFTARAN SEMESTER (DEP/DEE) SESI DIS 07 - SEMASA Compulsory DUB0 Compulsory DUE0 Compulsory **DRB000 0 4 Common Core DUW0 5 Common Core DBM0 6 Common Core DBS0 7 Discipline Core DET0 8 Discipline Core

More information

Cascading style sheets, HTML, DOM and Javascript

Cascading style sheets, HTML, DOM and Javascript CSS Dynamic HTML Cascading style sheets, HTML, DOM and Javascript DHTML Collection of technologies forming dynamic clients HTML (content content) DOM (data structure) JavaScript (behaviour) Cascading Style

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

This is an open-book, open-notes, open-computer exam. You may not consult with anyone other than the instructor while working on this exam.

This is an open-book, open-notes, open-computer exam. You may not consult with anyone other than the instructor while working on this exam. FINAL EXAM KEY SPRING 2016 CSC 105 INTERACTIVE WEB DOCUMENTS NICHOLAS R. HOWE This is an open-book, open-notes, open-computer exam. You may not consult with anyone other than the instructor while working

More information

LAMPIRAN 1 TATA CARA PENGGUNAAN SOFTWARE ALGORITMA GENETIKA

LAMPIRAN 1 TATA CARA PENGGUNAAN SOFTWARE ALGORITMA GENETIKA LAMPIRAN 1 TATA CARA PENGGUNAAN SOFTWARE ALGORITMA GENETIKA Langkah-langkah penggunaan Software Algoritma Genetika Job Shop : 1. Buka program Algoritma Genetika Job Shop 2. Masukkan data-data yang dibutuhkan

More information

Enterprise Knowledge Platform Adding the Login Form to Any Web Page

Enterprise Knowledge Platform Adding the Login Form to Any Web Page Enterprise Knowledge Platform Adding the Login Form to Any Web Page EKP Adding the Login Form to Any Web Page 21JAN03 2 Table of Contents 1. Introduction...4 Overview... 4 Requirements... 4 2. A Simple

More information

Summary 4/5. (contains info about the html)

Summary 4/5. (contains info about the html) Summary Tag Info Version Attributes Comment 4/5

More information

NukaCode - Front End - Bootstrap Documentation

NukaCode - Front End - Bootstrap Documentation Nuka - Front End - Bootstrap Documentation Release 1.0.0 stygian July 04, 2015 Contents 1 Badges 3 1.1 Links................................................... 3 1.2 Installation................................................

More information

Kartu Bimbingan Tugas Akhir Siswa

Kartu Bimbingan Tugas Akhir Siswa KEMENTERIAN PENDIDIKAN NASIONAL UNIVERSITAS SUMATERA UTARA FAKULTAS MATEMATIKA DAN ILMU PENGETAHUAN ALAM DEPARTEMEN MATEMATIKA PROGRAM STUDI D.III TEKNIK INFORMATIKA / STATISTIKA Jl. Bioteknologi No. 1

More information

By: JavaScript tutorial-a simple calculator

By:  JavaScript tutorial-a simple calculator JavaScript tutorial-a simple calculator In this small sample project, you will learn to create a simple JavaScript calculator. This calculator has only one text box and sixteen buttons. The text box allows

More information

PANDUAN PENGGUNA (SUPPLIER) e-purchase ORDER FOR SERVICES

PANDUAN PENGGUNA (SUPPLIER) e-purchase ORDER FOR SERVICES PANDUAN PENGGUNA (SUPPLIER) e-purchase ORDER FOR SERVICES SUPPLIER RELATIONSHIP MANAGEMENT SUPPLY CHAIN MANAGEMENT SYSTEM (SCMS) DISEDIAKAN OLEH: UNIT SUPPLY CHAIN MANAGEMENT (SCM) JABATAN SOURCING CONTROLLER

More information

Installation & Configuration Guide Version 3.1

Installation & Configuration Guide Version 3.1 ARPMiner Installation & Configuration Guide Version 3.1 Document Revision 2.2 https://www.kaplansoft.com/ ARPMiner is built by Yasin KAPLAN Read Readme.txt for last minute changes and updates which can

More information

DAFTAR ISI ABSTRAK... 1 KATA PENGANTAR...ERROR! BOOKMARK NOT DEFINED. UCAPAN TERIMAKASIH...ERROR! BOOKMARK NOT DEFINED. DAFTAR ISI...

DAFTAR ISI ABSTRAK... 1 KATA PENGANTAR...ERROR! BOOKMARK NOT DEFINED. UCAPAN TERIMAKASIH...ERROR! BOOKMARK NOT DEFINED. DAFTAR ISI... ABSTRAK Perkembangan teknologi scanner yang berkembang begitu pesat memunculkan ide yang menjadi dasar konsep tugas akhir ini. Pada awalnya scanner digunakan untuk membaca gambar sehingga dapat diolah

More information

JSP files for OBAAS1.1:

JSP files for OBAAS1.1: JSP files for OBAAS1.1: ----------------------- Apart from JSP files, there is also one stylesheet file named "style.css". You need to create jsp files in the WebContent folder of your project. Also create

More information

PART A SULIT (EKT 221) BAHAGIAN A. Answer ALL questions. Question 1. a) Briefly explain the concept of Clock Gating.

PART A SULIT (EKT 221) BAHAGIAN A. Answer ALL questions. Question 1. a) Briefly explain the concept of Clock Gating. PART A BAHAGIAN A Answer ALL questions. Jawab SEMUA soalan. Question Soalan a) Briefly explain the concept of Clock Gating. [Terangkan secara ringkas konsep Selakan Denyut.] [2 Marks/Markah] b) Define

More information

LAMPIRAN 1 PENGARUH KETERSEDIAAN KOLEKSI PERPUSTAKAAN TERHADAP MINAT BACA SISWA SMP NEGERI 30 MEDAN

LAMPIRAN 1 PENGARUH KETERSEDIAAN KOLEKSI PERPUSTAKAAN TERHADAP MINAT BACA SISWA SMP NEGERI 30 MEDAN LAMPIRAN 1 ANGKET PENELITIAN PENGARUH KETERSEDIAAN KOLEKSI PERPUSTAKAAN TERHADAP MINAT BACA SISWA SMP NEGERI 30 MEDAN Saya mengharapkan kesediaan Saudara untuk mengisi angket dalam rangka penelitian tetang

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

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

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

Multimedia Systems and Technologies

Multimedia Systems and Technologies Multimedia Systems and Technologies Sample exam paper 1 Notes: The exam paper is printed double-sided on two A3 sheets The exam duration is 2 hours and 40 minutes The maximum grade achievable in the written

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

MICROSOFT EXCEL. Membina Hamparan Elektronik Fungsi Hamparan Elektronik

MICROSOFT EXCEL. Membina Hamparan Elektronik Fungsi Hamparan Elektronik MICROSOFT EXCEL Membina Hamparan Elektronik Fungsi Hamparan Elektronik Microsoft Excel 2010 Kandungan Penggunaan Asas Excel Memformat Sel, Lembaran dan Buku Kerja (Work Book) Penggunaan Asas Excel Fail

More information