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

Size: px
Start display at page:

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

Transcription

1 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'); else{ if (empty($_session['namauser']) AND empty($_session['passuser']) AND $_SESSION['login']==0){ header('location:login.php'); else{ if($_session[leveluser] == 'admin') { header('location:admin.php'); else { <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initialscale=1.0"> <title>forum DIskusi - Mari Berdiskusi Disini</title> <!-- Core CSS - Include with every page --> <link href="assets/plugins/bootstrap/bootstrap.css" rel="stylesheet" /> <link href="assets/font-awesome/css/font-awesome.css" rel="stylesheet" /> <link href="assets/plugins/pace/pace-theme-big-counter.css" rel="stylesheet" /> <link href="assets/css/style.css" rel="stylesheet" /> <link href="assets/css/main-style.css" rel="stylesheet" /> <link rel="shortcut icon" href="#"> <!-- Page-Level CSS --> <link href="assets/plugins/morris/morris min.css" rel="stylesheet" /> <link href="assets/plugins/timeline/timeline.css" rel="stylesheet" /> <script type="text/javascript" src="jquery-min.js"></script> <script type="text/javascript">

2 var auto_refresh = setinterval( function () { $("#refresh").load("timeline.php").fadein("slow");, 1600); </script> <script src="js/jquery.js"></script> <script src="js/user.js"></script> </head> <body> <!-- wrapper --> <div id="wrapper"> <!-- navbar top --> <nav class="navbar navbar-default navbar-fixed-top" role="navigation" id="navbar"> <!-- navbar-header --> <div class="navbar-header"> <a class="navbar-brand" href="index.php"> <img src="assets/img/logo.png" alt="" /> </a> <!-- end navbar-header --> <!-- navbar-top-links --> <ul class="nav navbar-top-links navbar-right"> <!-- main dropdown --> <li class="dropdown"> <a class="dropdown-toggle" datatoggle="dropdown" href="#"> <i class="fa fa-user fa-3x"></i> </a> <!-- dropdown-messages --> <ul class="dropdown-menu dropdown-messages"> <li><a href="index.php?menu=postingan"><i class="fa fa-edit fa-fw"></i> Postingan</a> </li> <li><a href="index.php?menu=profil"><i class="fa fa-user fa-fw"></i> echo "$_SESSION[namauser]"; </a></li> <li class="divider"></li> <li><a href="logout.php"><i class="fa fa-signout fa-fw"></i> Logout</a></li> </ul> <!-- end dropdown-messages --> </li> <!-- end main dropdown --> </ul> <!-- end navbar-top-links --> </nav> <!-- end navbar top -->

3 <!-- navbar side --> <!-- end navbar side --> switch($_get['menu']){ default: <! INDEX > <div class="row"> <div class="col-lg-4"> <!--Timeline --> <div class="panel panel-primary"> <div class="panel-heading"> <i class="fa fa- fa-fw"></i> Diskusi Terbaru <div class="panel-body"> <div class="list-group"> $kompromi=mysql_query("select * FROM komprom ORDER BY id_komprom DESC LIMIT 20"); while($k=mysql_fetch_array($kompromi)) { echo "<a href=index.php?menu=kompromi&id=$k[id_komprom] class=\"list-group-item\" ><i class=\"fa fa-tasks fa-fw\"></i> $k[judul] <span class=\"pull-right text-muted small\"> <em>$k[tanggal]</em> </span> </a>"; <!--End Timeline --> <! end INDEX > break; case "kompromi": <! Menu POSTINGAN > <script language="javascript"> function validasi(form){ if (form.komentar.value == ""){ alert("form Komentar Tidak Boleh Kosong."); form.komentar.focus();

4 return (false); return (true); </script> $cekterbuka=mysql_query("select * FROM komprom WHERE id_komprom=$_get[id]"); $ck=mysql_fetch_array($cekterbuka); if($ck[status] == 0) { //include "list-user.php"; else { <div class="row"> <div class="col-komprom-4"> <!--Timeline --> <div class="panel panel-primary"> <div class="panel-heading"> <i class="fa fa-comments fa-fw"></i> Ruang Diskusi <div class="panel-body"> $kompromi1=mysql_query("select * FROM komprom WHERE id_komprom=$_get[id]"); $k=mysql_fetch_array($kompromi1); $tampilkanjoin=mysql_query("select * FROM `join` WHERE username_request='$_session[namauser]' AND id_komprom='$_get[id]'"); $u=mysql_fetch_array($tampilkanjoin); Oleh: <b>$k[username]</b>"; class="panel-collapse collapse in"> echo "$k[keterangan]"; <div class="panel panel-default"> <div class="panel-heading"> <h4 class="panel-title"> echo "$k[judul] - </h4> <div id="collapseone" <div class="panel-body">

5 class="panel-collapse collapse in"> <div id="collapseone" if($k[username] == $_SESSION[namauser] OR $u[status_join]==1 OR $k[status]==1 ) { include "timeline.php"; <form action="aksi.php?menu=komentar" method="post" onsubmit="return validasi(this)" enctype="multipart/form-data"> <input type="hidden" name="komprom" value=" echo "$_GET[id]"; "> <div class="form-group"> <label>komentar</label> <textarea class="form-control" id="tinymce_full" rows="3" name="komentar"></textarea> <div class="form-group"> <label>foto</label> <input type="file" name="fupload"> <input type="submit" value="kirim" class="btn btn-primary btn-lg btn-block"> </form> // Status join 1=Diterima // Status join 2=Ditolak else { $join=mysql_query("select * FROM `join` WHERE username_request='$_session[namauser]' AND id_komprom='$_get[id]'"); $cari=mysql_fetch_array($join); if($cari[username_request] == $_SESSION[namauser]) { echo " "; if($cari[status_join] == 2) { echo "<input type='submit' value='anda Tidak Diizinkan Untuk Bergabung' class='btn btn-danger btn-lg btn-block'>"; else { echo " ";

6 else { echo " <form method=post action=aksi.php?menu=join> <input type=hidden name='id_komprom' value='$k[id_komprom]'> <input type=hidden name='username_join' value='$k[username]'> <input type=hidden name='username' value='$_session[namauser]'> <input type='submit' value='join' class='btn btn-primary btn-lg btn-block'> </form>"; <!--End Timeline --> <! end Menu Postingan > break; case "laporkan-obrolan": <! Menu Laporkan Obrolan > <script language="javascript"> function validasi(form){ if (form.keterangan.value == ""){ alert("kotak Laporan Tidak Boleh Kosong."); form.keterangan.focus(); return (false); return (true); </script> <div class="row"> <div class="col-lg-4"> <!--Timeline --> <div class="panel panel-primary"> <div class="panel-heading"> <i class="fa fa-comments fa-fw"></i> Laporkan Komentar <div class="panel-body">

7 $kompromi1=mysql_query("select * FROM komprom AS a, komentar AS b WHERE a.id_komprom=b.id_komprom AND b.id_komentar='$_get[id]' AND a.id_komprom='$_get[komprom]' ORDER BY b.username"); $k=mysql_fetch_array($kompromi1); $tampilkanjoin=mysql_query("select * FROM `join` WHERE username_request='$_session[namauser]'"); $u=mysql_fetch_array($tampilkanjoin); <div class="panel panel-default"> <div class="panel-heading"> <h4 class="panel-title"> echo "Apa yang salah dengan komentar $k[username]?"; </h4> <div id="collapseone" class="panel-collapse collapse in"> <div class="panel-body"> <form action="aksi.php?menu=inputlaporan" method="post" onsubmit="return validasi(this)"> <input type="hidden" name="komprom" value=" echo "$_GET[komprom]"; "> <input type="hidden" name="komentar" value=" echo "$_GET[id]"; "> <input type="hidden" name="pelapor" value=" echo "$_SESSION[namauser]"; "> <input type="hidden" name="dilapor" value=" echo "$k[username]"; "> <div class="form-group"> <label>isikan keterangan dibawah ini untuk dilaporkan kepada Administrator</label> <textarea class="form-control" id="tinymce_full" rows="3" name="keterangan"></textarea> <input type="submit" value="kirim Laporan" class="btn btn-primary btn-lg btn-block"> </form> <!--End Timeline --> <! end Menu Laporkan Obrolan >

8 break; case "postingan": <! Menu POSTINGAN > <div class="row"> <div class="col-lg-4"> <!--Timeline --> <div class="panel panel-primary"> <div class="panel-heading"> <i class="fa fa-edit fa-fw"></i> Postingan <div class="panel-body"> echo "<a class=\"btn btn-primary btn-lg\" href=?menu=tambahpostingan> <i class=\"glyphicon glyphicon-plus\"></i> Tambah Postingan </a> <br><br> <div class=\"table-responsive\"> <table class=\"table table-striped table-bordered tablehover\" id=\"datatables-example\"> <thead> <tr><th>no</th><th>judul</th><th>tanggal Posting</th><th>Status Forum</th><th>Pilihan</th></tr></thead> <tbody>"; $tampil=mysql_query("select * FROM komprom WHERE username = '$_SESSION[namauser]' ORDER BY id_komprom DESC"); $no=1; while ($r=mysql_fetch_array($tampil)){ echo "<tr><td>$no</td> <td>$r[judul]</td> <td>$r[tanggal]</td>"; if($r[status]==1) { echo "<td>terbuka</td>"; else { echo "<td>tertutup</td>"; echo"<td>"; if($r[status]==0) { echo "<a class=\"btn btn-primary\" href=index.php?menu=lihatjoin&id=$r[id_komprom]> Permintaan join </a> <a class=\"btn btn-danger\" href=aksi.php?menu=hapuspostingan&id=$r[id_komprom]> Delete

9 </a>"; else { echo "<a class=\"btn btn-danger\" href=aksi.php?menu=hapuspostingan&id=$r[id_komprom]> Delete </a>"; echo"</td></tr>"; $no++; echo "</tbody></table>"; <!--End Timeline --> <! end Menu Postingan > break; case "tambahpostingan": <! Tambah Postingan > Postingan <div class="row"> <div class="col-lg-4"> <!--Timeline --> <div class="panel panel-primary"> <div class="panel-heading"> <i class="fa fa-edit fa-fw"></i> <div class="panel-body"> echo "<h2>tambah Postingan</h2> <form method=post action='aksi.php?menu=insertpostingan'> <input type=hidden name=username value='$_session[namauser]'> <div class=\"form-group\"> <label class=\"control-label\" for=\"inputsuccess1\">status Kompromi</label> <div class='controls'> <select class=\"form-control\" name='status' required='true'> <option selected value=\"\">- Pilih Status -</option> <option value='1'>terbuka</option> <option value='0'>tertutup</option> </select> <div class=\"form-group\">

10 <label class=\"control-label\" for=\"inputsuccess1\">judul</label> <input name='judul' type=\"text\" class=\"formcontrol\" id=\"inputsuccess1\"> <div class=\"form-group\"> <label class=\"control-label\" for=\"inputsuccess1\">keterangan</label> <textarea class=\"form-control\" name=keterangan></textarea> </table> <input type=submit name=submit value=simpan class=\"btn btn-primary btn-sm\"> <input type=button value=batal onclick=self.history.back() class=\"btn btn-danger btn-sm\"></form>"; <!--End Timeline --> <!--/.fluid-container--> <script src="vendors/bootstrap-wysihtml5/lib/js/wysihtml js"></script> <script src="vendors/jquery min.js"></script> <script src="bootstrap/js/bootstrap.min.js"></script> <script src="vendors/bootstrap-wysihtml5/src/bootstrapwysihtml5.js"></script> <script src="vendors/ckeditor/ckeditor.js"></script> <script src="vendors/ckeditor/adapters/jquery.js"></script> <script type="text/javascript" src="vendors/tinymce/js/tinymce/tinymce.min.js"></script> <script src="assets/scripts.js"></script> <script> $(function() { // Bootstrap $('#bootstrap-editor').wysihtml5(); // Ckeditor standard $( 'textarea#ckeditor_standard' ).ckeditor({width:'98%', height: '150px', toolbar: [ { name: 'document', items: [ 'Source', '-', 'NewPage', 'Preview', '-', 'Templates' ], // Defines toolbar group with name (used to create voice label) and items in 3 subgroups. [ 'Cut', 'Copy', 'Paste', 'PasteText', 'PasteFromWord', '-', 'Undo', 'Redo' ], // Defines toolbar group without name.

11 { name: 'basicstyles', items: [ 'Bold', 'Italic' ] ]); $( 'textarea#ckeditor_full' ).ckeditor({width:'98%', height: '150px'); ); // Tiny MCE tinymce.init({ selector: "#tinymce_basic", plugins: [ "advlist autolink lists link image charmap print preview anchor", "searchreplace visualblocks code fullscreen", "insertdatetime media table contextmenu paste" ], toolbar: "insertfile undo redo styleselect bold italic alignleft aligncenter alignright alignjustify bullist numlist outdent indent link image" ); // Tiny MCE tinymce.init({ selector: "#tinymce_full", plugins: [ "advlist autolink lists link image charmap print preview hr anchor pagebreak", "searchreplace wordcount visualblocks visualchars code fullscreen", "insertdatetime media nonbreaking save table contextmenu directionality", "emoticons template paste textcolor" ], toolbar1: "insertfile undo redo styleselect bold italic alignleft aligncenter alignright alignjustify bullist numlist outdent indent link image", toolbar2: "print preview media forecolor backcolor emoticons", image_advtab: true, templates: [ {title: 'Test template 1', content: 'Test 1', {title: 'Test template 2', content: 'Test 2' ] ); </script> <! end Tambah Postingan > break; case "lihatjoin":

12 <! Menu Lihat Join > <div class="row"> <div class="col-lg-4"> <!--Timeline --> <div class="panel panel-primary"> <div class="panel-heading"> <i class="fa fa-edit fa-fw"></i> Daftar Join <div class="panel-body"> echo " <div class=\"table-responsive\"> <table class=\"table table-striped table-bordered tablehover\" id=\"datatables-example\"> <thead> <tr><th>no</th><th>nama</th><th>pada Judul</th><th>Pilihan</th></tr></thead> <tbody>"; $tampil=mysql_query("select * FROM `join` a, komprom b WHERE a.username_join = '$_SESSION[namauser]' AND a.id_komprom=b.id_komprom AND a.status_join='0'"); $no=1; while ($r=mysql_fetch_array($tampil)){ echo "<tr><td>$no</td> <td>$r[username_request]</td> <td>$r[judul]</td> <td> <a class=\"btn btn-primary\" href=aksi.php?menu=requestjoin&status=1&id=$r[id_join]> Izinkan </a> <a class=\"btn btn-danger\" href=aksi.php?menu=requestjoin&status=2&id=$r[id_join]> Tolak </a></td></tr>"; $no++; echo "</tbody></table>"; <!--End Timeline --> <! end Lihat Join > break; case "profil":

13 <! Menu PROFIL > <div class="row"> <div class="col-lg-4"> <!--Timeline --> <div class="panel panel-primary"> <div class="panel-heading"> <i class="fa fa-user fa-fw"></i> Profil <div class="panel-body"> <script language="javascript"> function validasi(form){ if (form.password.value == ""){ alert("password Wajib Diisi."); form.password.focus(); return (false); return (true); </script> $tampil=mysql_query("select * FROM users WHERE username = '$_SESSION[namauser]'"); $r=mysql_fetch_array($tampil); echo " <form method=post action='aksi.php?menu=updateprofil' onsubmit=\"return validasi(this)\" enctype=\"multipart/form-data\"> <div class=\"form-group\"> <label class=\"control-label\" for=\"inputsuccess1\">username</label> <input name='username' value= '$r[username]' type=\"text\" class=\"form-control\" id=\"inputsuccess1\" readonly> <div class=\"form-group\"> <label class=\"control-label\" for=\"inputsuccess1\">nama Lengkap</label> <input name='nama' value= '$r[nama_depan]' type=\"text\" class=\"form-control\" id=\"inputsuccess1\"> <div class=\"form-group\"> <label class=\"control-label\" for=\"inputsuccess1\"> </label> <input name=' ' value= '$r[ ]' type=\"text\" class=\"form-control\" id=\"inputsuccess1\"> <div class=\"form-group\"> <label class=\"control-label\" for=\"inputsuccess1\">foto</label><br> "; if($r[foto] == '') { echo "<img src='assets/img/user.jpg'>"; else {

14 echo "<img src='assets/img/$r[foto]' width=100px>"; echo "<input type=file name=fupload> <div class=\"form-group\"> <label class=\"control-label\" for=\"inputsuccess1\">password (Wajib Diisi)</label> <input name='password' type=\"password\" class=\"form-control\" id=\"inputsuccess1\"> <input type=submit name=submit value=simpan class=\"btn btn-primary btn-sm\"> <input type=button value=batal onclick=self.history.back() class=\"btn btn-danger btn-sm\"></form>"; <!--End Timeline --> <! end Menu PROFIL > break; <!-- end wrapper --> <!-- Core Scripts - Include with every page --> <script src="assets/plugins/jquery js"></script> <script src="assets/plugins/bootstrap/bootstrap.min.js"></script> <script src="assets/plugins/metismenu/jquery.metismenu.js"></script> <script src="assets/plugins/pace/pace.js"></script> <script src="assets/scripts/siminta.js"></script> <!-- Page-Level Plugin Scripts--> <script src="assets/plugins/morris/raphael min.js"></script> <script src="assets/plugins/morris/morris.js"></script> <script src="assets/scripts/dashboard-demo.js"></script> </body> </html>

15 Admin.php error_reporting(0); include "config/koneksi.php"; <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initialscale=1.0"> <title>forum Diskusi - admin</title> <!-- Core CSS - Include with every page --> <link href="assets/plugins/bootstrap/bootstrap.css" rel="stylesheet" /> <link href="assets/font-awesome/css/font-awesome.css" rel="stylesheet" /> <link href="assets/plugins/pace/pace-theme-big-counter.css" rel="stylesheet" /> <link href="assets/css/style.css" rel="stylesheet" /> <link href="assets/css/main-style.css" rel="stylesheet" /> <link rel="shortcut icon" href="#.png"> <!-- Page-Level CSS --> <link href="assets/plugins/morris/morris min.css" rel="stylesheet" /> <link href="assets/plugins/timeline/timeline.css" rel="stylesheet" /> <script type="text/javascript" src="jquery-min.js"></script> <script type="text/javascript"> var auto_refresh = setinterval( function () { $("#refresh").load("timeline.php").fadein("slow");, 1600); </script> <script src="js/jquery.js"></script> <script src="js/user.js"></script> </head> <body> <!-- wrapper --> <div id="wrapper"> <!-- navbar top --> <nav class="navbar navbar-default navbar-fixed-top" role="navigation" id="navbar"> <!-- navbar-header --> <div class="navbar-header"> <a class="navbar-brand" href="index.php"> <img src="assets/img/logo.png" alt="" /> </a> <!-- end navbar-header -->

16 <!-- navbar-top-links --> <ul class="nav navbar-top-links navbar-right"> <!-- main dropdown --> <li class="dropdown"> <a class="dropdown-toggle" datatoggle="dropdown" href="#"> <i class="fa fa-user fa-3x"></i> </a> <!-- dropdown-messages --> <ul class="dropdown-menu dropdown-messages"> <li><a href="admin.php?menu=users"><i class="fa fa-edit fa-fw"></i> Daftar User</a> </li> <li class="divider"></li> <li><a href="logout.php"><i class="fa fa-signout fa-fw"></i> Logout</a></li> </ul> <!-- end dropdown-messages --> </li> <!-- end main dropdown --> </ul> <!-- end navbar-top-links --> </nav> <!-- end navbar top --> <!-- navbar side --> <!-- end navbar side --> switch($_get['menu']){ default: <! INDEX > <div class="row"> <div class="col-lg-4"> <!--Timeline --> <div class="panel panel-primary"> <div class="panel-heading"> <i class="fa fa-tasks fa-fw"></i> Diskusi Terpopuler <div class="panel-body"> <div class="list-group"> $kompromi=mysql_query("select * FROM laporan WHERE status='0' ORDER BY id_laporan DESC LIMIT 20"); $hitung=mysql_num_rows($kompromi); if($hitung == '0') { echo "Tidak Ada Laporan"; else { while($k=mysql_fetch_array($kompromi)) {

17 echo "<a href=admin.php?menu=laporan&komprom=$k[id_komprom]&komentar=$k[id_ko mentar]&id=$k[id_laporan] class=\"list-group-item\" ><i class=\"fa fa-tasks fa-fw\"></i> $k[pelapor] Melaporkan Komentar $k[dilapor] <span class=\"pull-right text-muted small\"> <em>$k[tanggal]</em> </span> </a>"; <!--End Timeline --> <! end INDEX > break; case "laporan": <! Menu Laporan > <script language="javascript"> function validasi(form){ if (form.komentar.value == ""){ alert("form Komentar Tidak Boleh Kosong."); form.komentar.focus(); return (false); return (true); </script> <div class="row"> <div class="col-lg-4"> <!--Timeline --> <div class="panel panel-primary"> <div class="panel-heading"> <i class="fa fa-comments fa-fw"></i> Laporan <div class="panel-body"> $kompromi1=mysql_query("select * FROM laporan AS a, komprom AS b, komentar AS c WHERE a.id_komprom=b.id_komprom AND a.id_komentar=c.id_komentar AND a.id_komprom='$_get[komprom]' AND a.id_komentar='$_get[komentar]' AND a.id_laporan='$_get[id]'"); $k=mysql_fetch_array($kompromi1);

18 $tampilkanjoin=mysql_query("select * FROM `join` WHERE username_request='$_session[namauser]'"); $u=mysql_fetch_array($tampilkanjoin); <div class="panel panel-default"> <div class="panel-heading"> <h4 class="panel-title"> echo "$k[pelapor] Melaporkan Komentar $k[dilapor]"; </h4> <div id="collapseone" class="panel-collapse collapse in"> <div class="panel-body"> include "config/classgost.php"; $data = "$k[komentar]"; $datajudul = "$k[judul]"; "Kriptografi-Metoda-GOST-Ardito!!"; $key = $gost=new ClassGost; //$data_encoded=$gost->encode($data, $key); $datajudul_encoded=$gost->encode($datajudul, $key); $data_encoded=$gost->encode($data, $key); echo " <form method=post action='aksi.php?menu=nonaktiflaporan'> <input type=hidden name=dilapor value='$k[dilapor]'> <input type=hidden name=komprom value='$_get[komprom]'> <input type=hidden name=komentar value='$_get[komentar]'> <input type=hidden name=laporan value='$_get[id]'> Pada diskusi:<br> <b>$k[judul]</b><br><br> Komentar $k[dilapor]:<br>

19 <b>$k[komentar]</b><br><br>"; if($c[gambar]!='') { else { echo "Gambar:<br>"; echo "<img src='gambar/$k[gambar]' width='30%'><br><br>"; echo " Laporan $k[pelapor]:<br> <b>$k[laporan]</b><br><br> <input type=submit name=submit value='nonaktifkan Komentar' class=\"btn btn-primary btn-sm\"> <input type=button value=batal onclick=self.history.back() class=\"btn btn-danger btn-sm\"></form>"; <!--End Timeline --> <! end Menu Postingan > break; case "users": <! Menu Users > <div class="row"> <div class="col-lg-4"> <!--Timeline --> <div class="panel panel-primary"> <div class="panel-heading"> <i class="fa fa-edit fa-fw"></i> Daftar User Diskusi <div class="panel-body"> echo " <div class=\"table-responsive\"> <table class=\"table table-striped table-bordered tablehover\" id=\"datatables-example\"> <thead> <tr><th>no</th><th>nama Lengkap</th><th>Username</th><th> </th></thead> <tbody>"; $tampil=mysql_query("select * FROM tbl_users WHERE level<>'admin' ORDER BY id_users"); $no=1; while ($r=mysql_fetch_array($tampil)){

20 echo "<tr><td>$no</td> <td>$r[nama_depan]</td> <td>$r[username]</td> <td>$r[ ]</td> </tr>"; $no++; echo "</tbody></table>"; <!--End Timeline --> <! end Menu Postingan > break; case "tambahpostingan": <! Tambah Postingan > <div class="row"> <div class="col-lg-4"> <!--Timeline --> <div class="panel panel-primary"> <div class="panel-heading"> <i class="fa fa-edit fa-fw"></i> Postingan <div class="panel-body"> echo "<h2>tambah Postingan</h2> <form method=post action='aksi.php?menu=insertpostingan'> <input type=hidden name=username value='$_session[namauser]'> <div class=\"form-group\"> <label class=\"control-label\" for=\"inputsuccess1\">status Kompromi</label> <div class='controls'> <select class=\"form-control\" name='status'> <option selected value='2'>- Pilih Status -</option> <option value='1'>terbuka</option> <option value='0'>tertutup</option> </select> <div class=\"form-group\"> <label class=\"control-label\" for=\"inputsuccess1\">judul</label> <input name='judul' type=\"text\" class=\"formcontrol\" id=\"inputsuccess1\">

21 <div class=\"form-group\"> <label class=\"control-label\" for=\"inputsuccess1\">keterangan</label> <textarea class=\"form-control\" id=\"tinymce_full\" name=keterangan></textarea> </table> <input type=submit name=submit value=simpan class=\"btn btn-primary btn-sm\"> <input type=button value=batal onclick=self.history.back() class=\"btn btn-danger btn-sm\"></form>"; <!--End Timeline --> <!--/.fluid-container--> <script src="vendors/bootstrap-wysihtml5/lib/js/wysihtml js"></script> <script src="vendors/jquery min.js"></script> <script src="bootstrap/js/bootstrap.min.js"></script> <script src="vendors/bootstrap-wysihtml5/src/bootstrapwysihtml5.js"></script> <script src="vendors/ckeditor/ckeditor.js"></script> <script src="vendors/ckeditor/adapters/jquery.js"></script> <script type="text/javascript" src="vendors/tinymce/js/tinymce/tinymce.min.js"></script> <script src="assets/scripts.js"></script> <script> $(function() { // Bootstrap $('#bootstrap-editor').wysihtml5(); // Ckeditor standard $( 'textarea#ckeditor_standard' ).ckeditor({width:'98%', height: '150px', toolbar: [ { name: 'document', items: [ 'Source', '-', 'NewPage', 'Preview', '-', 'Templates' ], // Defines toolbar group with name (used to create voice label) and items in 3 subgroups. [ 'Cut', 'Copy', 'Paste', 'PasteText', 'PasteFromWord', '-', 'Undo', 'Redo' ], // Defines toolbar group without name. { name: 'basicstyles', items: [ 'Bold', 'Italic' ] ]); $( 'textarea#ckeditor_full' ).ckeditor({width:'98%', height: '150px'); ); // Tiny MCE tinymce.init({ selector: "#tinymce_basic", plugins: [

22 "advlist autolink lists link image charmap print preview anchor", "searchreplace visualblocks code fullscreen", "insertdatetime media table contextmenu paste" ], toolbar: "insertfile undo redo styleselect bold italic alignleft aligncenter alignright alignjustify bullist numlist outdent indent link image" ); // Tiny MCE tinymce.init({ selector: "#tinymce_full", plugins: [ "advlist autolink lists link image charmap print preview hr anchor pagebreak", "searchreplace wordcount visualblocks visualchars code fullscreen", "insertdatetime media nonbreaking save table contextmenu directionality", "emoticons template paste textcolor" ], toolbar1: "insertfile undo redo styleselect bold italic alignleft aligncenter alignright alignjustify bullist numlist outdent indent link image", toolbar2: "print preview media forecolor backcolor emoticons", image_advtab: true, templates: [ {title: 'Test template 1', content: 'Test 1', {title: 'Test template 2', content: 'Test 2' ] ); </script> <! end Tambah Postingan > break; case "lihatjoin": <! Menu Lihat Join > <div class="row"> <div class="col-lg-4"> <!--Timeline --> <div class="panel panel-primary"> <div class="panel-heading"> <i class="fa fa-edit fa-fw"></i> Daftar Join <div class="panel-body"> echo "

23 <div class=\"table-responsive\"> <table class=\"table table-striped table-bordered tablehover\" id=\"datatables-example\"> <thead> <tr><th>no</th><th>nama</th><th>pada Judul</th><th>Pilihan</th></tr></thead> <tbody>"; $tampil=mysql_query("select * FROM `join` a, komprom b WHERE a.username_join = '$_SESSION[namauser]' AND a.id_komprom=b.id_komprom AND a.status_join='0'"); $no=1; while ($r=mysql_fetch_array($tampil)){ echo "<tr><td>$no</td> <td>$r[username_request]</td> <td>$r[judul]</td> <td> <a class=\"btn btn-primary\" href=aksi.php?menu=requestjoin&status=1&id=$r[id_komprom]> Izinkan </a> <a class=\"btn btn-danger\" href=aksi.php?menu=requestjoin&status=2&id=$r[id_komprom]> Tolak </a></td></tr>"; $no++; echo "</tbody></table>"; <!--End Timeline --> <! end Lihat Join > break; case "profil": <! Menu PROFIL > <div class="row"> <div class="col-lg-4"> <!--Timeline --> <div class="panel panel-primary"> <div class="panel-heading"> <i class="fa fa-user fa-fw"></i> Profil <div class="panel-body"> <script language="javascript"> function validasi(form){ if (form.password.value == ""){ alert("password Wajib Diisi."); form.password.focus();

24 return (false); return (true); </script> $tampil=mysql_query("select * FROM users WHERE username = '$_SESSION[namauser]'"); $r=mysql_fetch_array($tampil); echo " <form method=post action='aksi.php?menu=updateprofil' onsubmit=\"return validasi(this)\" enctype=\"multipart/form-data\"> <div class=\"form-group\"> <label class=\"control-label\" for=\"inputsuccess1\">username</label> <input name='username' value= '$r[username]' type=\"text\" class=\"form-control\" id=\"inputsuccess1\" readonly> <div class=\"form-group\"> <label class=\"control-label\" for=\"inputsuccess1\">nama Lengkap</label> <input name='nama' value= '$r[nama_depan]' type=\"text\" class=\"form-control\" id=\"inputsuccess1\"> <div class=\"form-group\"> <label class=\"control-label\" for=\"inputsuccess1\"> </label> <input name=' ' value= '$r[ ]' type=\"text\" class=\"form-control\" id=\"inputsuccess1\"> <div class=\"form-group\"> <label class=\"control-label\" for=\"inputsuccess1\">foto</label><br> "; if($r[foto] == '') { echo "<img src='assets/img/user.jpg'>"; else { echo "<img src='assets/img/$r[foto]' width=100px>"; echo "<input type=file name=fupload> <div class=\"form-group\"> <label class=\"control-label\" for=\"inputsuccess1\">password (Wajib Diisi)</label> <input name='password' type=\"password\" class=\"form-control\" id=\"inputsuccess1\"> <input type=submit name=submit value=simpan class=\"btn btn-primary btn-sm\"> <input type=button value=batal onclick=self.history.back() class=\"btn btn-danger btn-sm\"></form>";

25 <!--End Timeline --> <! end Menu PROFIL > break; <!-- end wrapper --> <!-- Core Scripts - Include with every page --> <script src="assets/plugins/jquery js"></script> <script src="assets/plugins/bootstrap/bootstrap.min.js"></script> <script src="assets/plugins/metismenu/jquery.metismenu.js"></script> <script src="assets/plugins/pace/pace.js"></script> <script src="assets/scripts/siminta.js"></script> <!-- Page-Level Plugin Scripts--> <script src="assets/plugins/morris/raphael min.js"></script> <script src="assets/plugins/morris/morris.js"></script> <script src="assets/scripts/dashboard-demo.js"></script> </body> </html>

26 Login.php session_start(); error_reporting(0); include 'config/koneksi.php'; if(!empty($_post)){ $username = $_POST['username']; $password = md5($_post['password']); $sql = "select * from tbl_users where username='".$username."' and password='".$password."'"; #echo $sql."<br />"; $query = mysql_query($sql) or die (mysql_error()); // pengecekan query valid atau tidak if($query){ $row = mysql_num_rows($query); $r = mysql_fetch_array($query); // jika $row > 0 atau username dan password ditemukan if($row > 0){ session_start(); include "timeout.php"; $_SESSION[namauser] = $r[username]; $_SESSION[namalengkap] = $r[nama_depan]; $_SESSION[passuser] = $r[password]; $_SESSION[leveluser] = $r[level]; // session timeout $_SESSION[login] = 1; timer(); $sid_lama = session_id(); session_regenerate_id(); $sid_baru = session_id(); mysql_query("update tbl_users SET id_session='$sid_baru' WHERE username='$username'"); header('location:index.php'); else{ $error="<br>username Atau Password Salah"; <!DOCTYPE html> <html>

27 <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initialscale=1.0"> <title>forum DIskusi - Mari Berdiskusi Disini</title> <!-- Core CSS - Include with every page --> <link href="assets/plugins/bootstrap/bootstrap.css" rel="stylesheet" /> <link href="assets/font-awesome/css/font-awesome.css" rel="stylesheet" /> <link href="assets/plugins/pace/pace-theme-big-counter.css" rel="stylesheet" /> <link href="assets/css/style.css" rel="stylesheet" /> <link href="assets/css/main-style.css" rel="stylesheet" /> <link rel="shortcut icon" href=""> <!-- Page-Level CSS --> <link href="assets/plugins/morris/morris min.css" rel="stylesheet" /> </head> <body class="body-login-back"> <div class="container"> <div class="row"> <div class="col-md-4 col-md-offset-4 text-center logomargin "> <a href="index.php"><img src="assets/img/logo.png" alt=""/></a> <div class="col-md-4 col-md-offset-4"> <div class="login-panel panel panel-default"> <div class="panel-heading"> <h3 class="panel-title">please Sign In</h3> <div class="panel-body"> <form role="form" method="post" action=""> <fieldset> <div class="form-group"> <input class="form-control" placeholder="id Login Anda" name="username" type="text" autofocus required autocomplete="off"> <div class="form-group"> <input class="form-control" placeholder="password" name="password" type="password" required> Belum punya akun? Klik <a href="registrasi.php">disini</a> Untuk Registrasi.<br><br> <!-- Change this to a button or input when using this as a form --> <input type="submit" name="submit" value="login" class="btn btn-lg btn-success btn-block">

28 </fieldset> </form> echo "<div align='center'><font color='#ff0000'><b>$error</b></font>"; <!-- Core Scripts - Include with every page --> <script src="assets/plugins/jquery js"></script> <script src="assets/plugins/bootstrap/bootstrap.min.js"></script> <script src="assets/plugins/metismenu/jquery.metismenu.js"></script> </body> </html> Cek_login.php include "config/koneksi.php"; function anti_injection($data){ $filter = mysql_real_escape_string(stripslashes(strip_tags(htmlspecialchars($d ata,ent_quotes)))); return $filter; $username = anti_injection($_post['username']); $pass = anti_injection(md5($_post['password'])); // pastikan username dan password adalah berupa huruf atau angka.

29 $login=mysql_query("select * FROM tbl_users WHERE username='$username' AND password='$pass'"); $ketemu=mysql_num_rows($login); $r=mysql_fetch_array($login); // Apabila username dan password ditemukan if ($ketemu > 0){ session_start(); include "timeout.php"; $_SESSION[namauser] = $r[username]; $_SESSION[namalengkap] = $r[nama_depan]; $_SESSION[passuser] $_SESSION[leveluser] = $r[password]; = $r[level]; // session timeout $_SESSION[login] = 1; timer(); $sid_lama = session_id(); session_regenerate_id(); $sid_baru = session_id(); mysql_query("update tbl_users SET id_session='$sid_baru' WHERE username='$username'"); header('location:index.php');

30 else{ $error=" <link href=config/adminstyle.css rel=stylesheet type=text/css> <center><font face='tahoma' size='3'><b>login GAGAL! </b></font><br><hr><br> <font size='8' color='red' face='comic sans ms'><blink>username atau Password Anda tidak benar!!!</blink></font><br> Atau account Anda sedang diblokir.<br> <a href=login.php><b>ulangi LAGI</b></a></center> <div align='center'> ";

31 Logout.php session_start(); session_destroy(); error_reporting(0); include "config/koneksi.php"; header('location:login.php'); Registrasi.php <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initialscale=1.0"> <title>komprom.net - Kompromikan Semuanya Disini</title> <!-- Core CSS - Include with every page --> <link href="assets/plugins/bootstrap/bootstrap.css" rel="stylesheet" /> <link href="assets/font-awesome/css/font-awesome.css" rel="stylesheet" /> <link href="assets/plugins/pace/pace-theme-big-counter.css" rel="stylesheet" /> <link href="assets/css/style.css" rel="stylesheet" /> <link href="assets/css/main-style.css" rel="stylesheet" /> <link rel="shortcut icon" href="icon.png"> <!-- Page-Level CSS --> <link href="assets/plugins/morris/morris min.css" rel="stylesheet" /> </head> <body class="body-login-back"> <div class="container"> <div class="row"> <div class="col-md-4 col-md-offset-4 text-center logomargin "> <a href="index.php"><img src="assets/img/logo.png" alt=""/></a> <div class="col-md-4 col-md-offset-4"> <div class="login-panel panel panel-default"> <div class="panel-heading"> <h3 class="panel-title">form Registrasi</h3> <div class="panel-body"> <form role="form" method="post" action="submit-register.php">

32 <fieldset> <div class="form-group"> <input class="form-control" placeholder="nama Lengkap" name="nama" autofocus required> <div class="form-group"> <input class="form-control" placeholder=" " name=" " autofocus required> <div class="form-group"> <input class="form-control" placeholder="id Komprom" name="username" autofocus required> <div class="form-group"> <input class="form-control" placeholder="password" name="password" type="password" required> <!-- Change this to a button or input when using this as a form --> <input type="submit" value="daftar" class="btn btn-lg btn-success btn-block"> </fieldset> </form> <!-- Core Scripts - Include with every page --> <script src="assets/plugins/jquery js"></script> <script src="assets/plugins/bootstrap/bootstrap.min.js"></script> <script src="assets/plugins/metismenu/jquery.metismenu.js"></script> </body> </html>

33 Aksi.php session_start(); error_reporting(0); include "config/koneksi.php"; include "config/fungsi_thumb.php"; include('config/classgost.php'); $key = "Kriptografi-Metoda-GOST-Ardito!!"; $tgl=date("y-m-d"); $menu=$_get[menu]; if($menu=='insertpostingan') { mysql_query("insert INTO komprom (username, judul, keterangan, tanggal, status) VALUES ('$_POST[username]', '$_POST[judul]', '$_POST[keterangan]', '$tgl', '$_POST[status]')"); header('location:index.php?menu=postingan');

34 elseif($menu=='hapuspostingan') { mysql_query("delete FROM komprom WHERE id_komprom = '$_GET[id]'"); header('location:index.php?menu=postingan'); elseif($menu=='komentar') { $tgl=date("y-m-d"); $lokasi_file $tipe_file $nama_file $acak = $_FILES['fupload']['tmp_name']; = $_FILES['fupload']['type']; = $_FILES['fupload']['name']; = rand(1,99); $nama_file_unik = $acak.$nama_file; if (empty($lokasi_file)){ mysql_query("insert INTO komentar (id_komprom, username, komentar, tanggal) VALUES ('$_POST[komprom]', '$_SESSION[namauser]', '$_POST[komentar]', '$tgl')"); else { UploadGambar($nama_file_unik); mysql_query("insert INTO komentar (id_komprom,

35 username, komentar, tanggal, gambar) VALUES ('$_POST[komprom]', '$_SESSION[namauser]', '$_POST[komentar]', '$tgl', '$nama_file_unik')"); header('location:index.php?menu=kompromi&id='.$_post[komprom]); // Update Profil elseif ($menu == 'updateprofil'){ $lokasi_file $tipe_file $nama_file $acak = $_FILES['fupload']['tmp_name']; = $_FILES['fupload']['type']; = $_FILES['fupload']['name']; = rand(1,99); $nama_file_unik = $acak.$nama_file; $pass_baru=md5($_post[password]); if (empty($lokasi_file)){ mysql_query("update users SET nama_depan='$_post[nama]',

36 ='$_post[ ]', password='$pass_baru' WHERE username = '$_POST[username]'"); else{ UploadImage($nama_file_unik); mysql_query("update users SET nama_depan='$_post[nama]', ='$_post[ ]', password='$pass_baru', ='$nama_file_unik' foto WHERE username = '$_POST[username]'"); header('location:index.php?menu=profil'); elseif ($menu=='join') { mysql_query("insert INTO `join`(`id_komprom`, `username_join`, `username_request`) VALUES ('$_POST[id_komprom]', '$_POST[username_join]', '$_POST[username]')");

37 header('location:index.php?menu=kompromi&id='.$_post[id_komprom]); elseif ($menu=='requestjoin') { mysql_query("update `join` SET status_join='$_get[status]' WHERE id_join='$_get[id]'"); header('location:index.php?menu=postingan'); elseif ($menu=='inputlaporan') { mysql_query("insert INTO `laporan` (`id_komentar`,`id_komprom`,`pelapor`,`dilapor`,`laporan`) VALUES ('$_POST[komentar]', '$_POST[komprom]', '$_POST[pelapor]', '$_POST[dilapor]', '$_POST[keterangan]')"); echo "<script>alert('komentar $_POST[dilapor] Telah Dilaporkan Kepada Administrator'); window.location = 'index.php' </script>"; elseif ($menu=='nonaktiflaporan') { mysql_query("update laporan SET status = '1' WHERE id_komprom='$_post[komprom]' AND id_komentar='$_post[komentar]' AND id_laporan='$_post[laporan]'"); mysql_query("update komentar SET status = '1' WHERE id_komprom='$_post[komprom]' AND id_komentar='$_post[komentar]'"); echo "<script>alert('komentar $_POST[dilapor] Telah Dilaporkan Di Nonaktifkan'); window.location = 'admin.php' </script>";

38

39 Timeline.php <ul class="timeline"> "config/koneksi.php"; "config/fungsi_indotgl.php"; session_start(); error_reporting(0); include include $panggil = mysql_query("select a.username, a.id_komentar, a.komentar, a.tanggal, a.id_komprom, a.gambar, b.username, b.foto, a.status FROM komentar AS a, tbl_users AS b WHERE a.username = b.username AND a.id_komprom = '$_GET[id]' ORDER BY a.id_komentar"); $no=1; while($c=mysql_fetch_array($panggil)) { $tgl=tgl_indo($c[tanggal]); class='timeline-inverted'>"; if(($no % 2) == 0){ $li = "<li else{ $li = "<li>"; echo "$li"; <div class="timeline-badge"> if($c[foto] == '') { echo "<img src='assets/img/user.jpg' class='gambar'>"; else { echo "<img src='assets/img/$c[foto]' class='gambar'>";

40 <div class="timeline-panel"> if($c[username] <> '$_SESSION[namauser]' AND $c[status] == '1') { else { <div class="box-tools pull-right"> <div class="btn-group"> <a href="#" data-toggle="dropdown"><i class="fa fa-sort-down"></i></a> <ul class="dropdown-menu" role="menu"> <li><a href=" echo "?menu=laporkanobrolan&komprom=$c[id_komprom]&id=$c[id_komentar]"; ">Laporkan Komentar</a></li> </ul> <div class="timelineheading"> <h4 class="timelinetitle"> echo "$c[username]"; </h4> <p> <small class="textmuted"><i class="fa fa-time"></i> echo "$tgl"; </small> </p> <div class="timeline-body"> if($c[status] == '1') { echo "<font color='#ff0000'>komentar Ini Telah Di Nonaktifkan Oleh Administrator.</font>"; else { echo "$c[komentar] <br>"; if($c[gambar]!='') { echo "<img src='gambar/$c[gambar]' width='30%'>"; </li>

41 </ul> $no++;

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

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

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

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

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

Bootstrap 1/20

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

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

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

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

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

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

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

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

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 1 : Database

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

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

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

index.php pemetaan Gizi Palembang

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

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

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

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

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

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

Web Programming BootStrap Unit Exercises

Web Programming BootStrap Unit Exercises Web Programming BootStrap Unit Exercises Start with the Notes packet. That packet will tell you which problems to do when. 1. Which line(s) are green? 2. Which line(s) are in italics? 3. In the space below

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

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

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

LAMPIRAN Kode Program

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

More information

<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.97.3/css/materialize.min.css">

<link rel=stylesheet href=https://cdnjs.cloudflare.com/ajax/libs/materialize/0.97.3/css/materialize.min.css> About the Tutorial Materialize is a UI component library created with CSS, JavaScript, and HTML. Materialize UI components help in constructing attractive, consistent, and functional web pages and web

More information

Produced by. Agile Software Development. Eamonn de Leastar

Produced by. Agile Software Development. Eamonn de Leastar Agile Software Development Produced by Eamonn de Leastar (edeleastar@wit.ie) Department of Computing, Maths & Physics Waterford Institute of Technology http://www.wit.ie http://elearning.wit.ie Pacemaker

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

ITS331 IT Laboratory I: (Laboratory #11) Session Handling

ITS331 IT Laboratory I: (Laboratory #11) Session Handling School of Information and Computer Technology Sirindhorn International Institute of Technology Thammasat University ITS331 Information Technology Laboratory I Laboratory #11: Session Handling Creating

More information

PRÍLOHY PRÍLOHY. Príloha 1 Náhľady vybraných podstránok webovej stránky

PRÍLOHY PRÍLOHY. Príloha 1 Náhľady vybraných podstránok webovej stránky PRÍLOHY Príloha 1 Náhľady vybraných podstránok webovej stránky Príloha 2 Vybrané časti zdrojového kódu V Prílohe 3 sa nachádza len niekoľko vybraných častí zdrojového kódu projektu. Kompletný zdrojový

More information

Static Webpage Development

Static Webpage Development Dear Student, Based upon your enquiry we are pleased to send you the course curriculum for PHP Given below is the brief description for the course you are looking for: - Static Webpage Development Introduction

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

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

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

А «- - «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

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

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

Web development using PHP & MySQL with HTML5, CSS, JavaScript

Web development using PHP & MySQL with HTML5, CSS, JavaScript Web development using PHP & MySQL with HTML5, CSS, JavaScript Static Webpage Development Introduction to web Browser Website Webpage Content of webpage Static vs dynamic webpage Technologies to create

More information

Web Development and HTML. Shan-Hung Wu CS, NTHU

Web Development and HTML. Shan-Hung Wu CS, NTHU Web Development and HTML Shan-Hung Wu CS, NTHU Outline How does Internet Work? Web Development HTML Block vs. Inline elements Lists Links and Attributes Tables Forms 2 Outline How does Internet Work? Web

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

Django AdminLTE 2 Documentation

Django AdminLTE 2 Documentation Django AdminLTE 2 Documentation Release 0.1 Adam Charnock Jul 02, 2018 Contents 1 Contents 3 1.1 Quickstart................................................ 3 1.2 Templates & Blocks Reference.....................................

More information

LISTING KODE PROGRAM

LISTING KODE PROGRAM LISTING KODE PROGRAM Kategori PHP

More information

A WEB APPLICATION FOR ONLINE POLLING. A Thesis. Presented to the. Faculty of. San Diego State University. In Partial Fulfillment

A WEB APPLICATION FOR ONLINE POLLING. A Thesis. Presented to the. Faculty of. San Diego State University. In Partial Fulfillment A WEB APPLICATION FOR ONLINE POLLING A Thesis Presented to the Faculty of San Diego State University In Partial Fulfillment of the Requirements for the Degree Master of Science in Computer Science by Ashok

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

SYBMM ADVANCED COMPUTERS QUESTION BANK 2013

SYBMM ADVANCED COMPUTERS QUESTION BANK 2013 CHAPTER 1: BASIC CONCEPTS OF WEB DESIGNING 1. What is the web? What are the three ways you can build a webpage? The World Wide Web (abbreviated as WWW or W3, commonly known as the web), is a system of

More information

Layout Manager - Toolbar Reference Guide

Layout Manager - Toolbar Reference Guide Layout Manager - Toolbar Reference Guide Working with a Document Toolbar Button Description View or edit the source code of the document (for advanced users). Save the contents and submit its data to the

More information

recall: a Web page is a text document that contains additional formatting information in the HyperText Markup Language (HTML)

recall: a Web page is a text document that contains additional formatting information in the HyperText Markup Language (HTML) HTML & Web Pages recall: a Web page is a text document that contains additional formatting information in the HyperText Markup Language (HTML) HTML specifies formatting within a page using tags in its

More information

<page> 1 Document Summary Document Information <page> 2 Document Structure Text Formatting <page> 3 Links Images <page> 4

<page> 1 Document Summary Document Information <page> 2 Document Structure Text Formatting <page> 3 Links Images <page> 4 Document Summary Document Information Document Structure Text Formatting Links Images Lists Forms Input Type Attributes Select Attributes Option Attributes Table Formatting Objects and iframes iframe Attributes

More information

CSC 121 Computers and Scientific Thinking

CSC 121 Computers and Scientific Thinking CSC 121 Computers and Scientific Thinking Fall 2005 HTML and Web Pages 1 HTML & Web Pages recall: a Web page is a text document that contains additional formatting information in the HyperText Markup Language

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

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

By the end of this section of the practical, the students should be able to:

By the end of this section of the practical, the students should be able to: By the end of this section of the practical, the students should be able to: Connecting to a MySQL database in PHP with the mysql_connect() and mysql_select_db() functions Trapping and displaying database

More information

Django Part II SPARCS 11 undead. Greatly Inspired by SPARCS 10 hodduc

Django Part II SPARCS 11 undead. Greatly Inspired by SPARCS 10 hodduc Django Part II 2015-05-27 SPARCS 11 undead Greatly Inspired by SPARCS 10 hodduc Previously on Django Seminar Structure of Web Environment HTTP Requests and HTTP Responses Structure of a Django Project

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

Responsive Web Design and Bootstrap MIS Konstantin Bauman. Department of MIS Fox School of Business Temple University

Responsive Web Design and Bootstrap MIS Konstantin Bauman. Department of MIS Fox School of Business Temple University Responsive Web Design and Bootstrap MIS 2402 Konstantin Bauman Department of MIS Fox School of Business Temple University Exam 3 (FINAL) Date: 12/06/18 four weeks from now! JavaScript, jquery, Bootstrap,

More information

HTML TAG SUMMARY HTML REFERENCE 18 TAG/ATTRIBUTE DESCRIPTION PAGE REFERENCES TAG/ATTRIBUTE DESCRIPTION PAGE REFERENCES MOST TAGS

HTML TAG SUMMARY HTML REFERENCE 18 TAG/ATTRIBUTE DESCRIPTION PAGE REFERENCES TAG/ATTRIBUTE DESCRIPTION PAGE REFERENCES MOST TAGS MOST TAGS CLASS Divides tags into groups for applying styles 202 ID Identifies a specific tag 201 STYLE Applies a style locally 200 TITLE Adds tool tips to elements 181 Identifies the HTML version

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

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

For instructions to change the logo, please refer to:

For instructions to change the logo, please refer to: Header Logo: For instructions to change the logo, please refer to: https://support3dcartcom/knowledgebase/article/view/630/5/how-do-i-add-logos-to-mystore Menu Links and Phone Number: Menu LInks: From

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

DAFTAR ISI SixghaKreasi

DAFTAR ISI SixghaKreasi 1JAM MEMBUAT DENGAN PHP DAN MYSQL SIGIT DWI PRASETYO DAFTAR ISI Hal. 3 Pengenalan singkat PDO Hal. 3 Membuat Database Hal. 4 Membuat Layout Hal. 5 Membuat Koneksi ke Database Hal. 6 Membuat File Index

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

Integrated Dashboard Design

Integrated Dashboard Design Integrated Dashboard Design integrating Zabbix data with other systems Lukasz Lipski IT Operations Specialist, Nordea Bank Polska SA September 2013 NORDEA IT POLAND AND BALTIC COUNTRIES IT support for

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

COMPUTER APPLICATIONS IN BUSINESS FYBMS SEM II

COMPUTER APPLICATIONS IN BUSINESS FYBMS SEM II CHAPTER 1: HTML 1. What is HTML? Define its structure. a. HTML [Hypertext Markup Language] is the main markup language for creating web pages and other information that can be displayed in a web browser.

More information

A Balanced Introduction to Computer Science, 3/E

A Balanced Introduction to Computer Science, 3/E A Balanced Introduction to Computer Science, 3/E David Reed, Creighton University 2011 Pearson Prentice Hall ISBN 978-0-13-216675-1 Chapter 2 HTML and Web Pages 1 HTML & Web Pages recall: a Web page is

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

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

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

Responsive Web Design (RWD)

Responsive Web Design (RWD) Responsive Web Design (RWD) Responsive Web Design: design Web pages, so that it is easy to see on a wide range of of devices phone, tablet, desktop,... Fixed vs Fluid layout Fixed: elements have fixed

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

Advantages: simple, quick to get started, perfect for simple forms, don t need to know how form model objects work

Advantages: simple, quick to get started, perfect for simple forms, don t need to know how form model objects work 1 Forms 1.1 Introduction You cannot enter data in an application without forms. AngularJS allowed the user to create forms quickly, using the NgModel directive to bind the input element to the data in

More information

Website Development with HTML5, CSS and Bootstrap

Website Development with HTML5, CSS and Bootstrap Contact Us 978.250.4983 Website Development with HTML5, CSS and Bootstrap Duration: 28 hours Prerequisites: Basic personal computer skills and basic Internet knowledge. Course Description: This hands on

More information

Index. alt, 38, 57 class, 86, 88, 101, 107 href, 24, 51, 57 id, 86 88, 98 overview, 37. src, 37, 57. backend, WordPress, 146, 148

Index. alt, 38, 57 class, 86, 88, 101, 107 href, 24, 51, 57 id, 86 88, 98 overview, 37. src, 37, 57. backend, WordPress, 146, 148 Index Numbers & Symbols (angle brackets), in HTML, 47 : (colon), in CSS, 96 {} (curly brackets), in CSS, 75, 96. (dot), in CSS, 89, 102 # (hash mark), in CSS, 87 88, 99 % (percent) font size, in CSS,

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

Web Designing. Course Content. Basic HTML Tags. Getting started with CSS. Dealing with Images

Web Designing. Course Content. Basic HTML Tags. Getting started with CSS. Dealing with Images Web Designing Course Content Basic HTML Tags Basic HTML template Heading Tags Paragraph and Break tags Bold and Italics HTML lists Getting started with CSS Introduction to CSS CSS rules Where to put your

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

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

Basic CSS Lecture 17

Basic CSS Lecture 17 Basic CSS Lecture 17 Robb T. Koether Hampden-Sydney College Wed, Feb 21, 2018 Robb T. Koether (Hampden-Sydney College) Basic CSSLecture 17 Wed, Feb 21, 2018 1 / 22 1 CSS 2 Background Styles 3 Text Styles

More information

CS 350 COMPUTER/HUMAN INTERACTION. Lecture 6

CS 350 COMPUTER/HUMAN INTERACTION. Lecture 6 CS 350 COMPUTER/HUMAN INTERACTION Lecture 6 Setting up PPP webpage Log into lab Linux client or into csserver directly Webspace (www_home) should be set up Change directory for CS 350 assignments cp r

More information

USING JOOMLA LEVEL 3 (BACK END) OVERVIEW AUDIENCE LEVEL 3 USERS

USING JOOMLA LEVEL 3 (BACK END) OVERVIEW AUDIENCE LEVEL 3 USERS USING JOOMLA LEVEL 3 (BACK END) OVERVIEW This document is designed to provide guidance and training for incorporating your department s content into to the Joomla Content Management System (CMS). Each

More information

Last class we looked at HTML5.

Last class we looked at HTML5. ADVANCED HTML5. #2 2.1 Recap 2 3 Last class we looked at HTML5. headings There are 6 levels available, ranging from h1 to h6. paragraphs links

More information

HTML, CSS, Bootstrap, Javascript and jquery

HTML, CSS, Bootstrap, Javascript and jquery HTML, CSS, Bootstrap, Javascript and jquery Meher Krishna Patel Created on : Octorber, 2017 Last updated : May, 2018 More documents are freely available at PythonDSP Table of contents Table of contents

More information

HTML: Parsing Library

HTML: Parsing Library HTML: Parsing Library Version 4.1.3 November 20, 2008 (require html) The html library provides functions to read html documents and structures to represent them. (read-xhtml port) html? port : input-port?

More information

CMS Training. Web Address for Training Common Tasks in the CMS Guide

CMS Training. Web Address for Training  Common Tasks in the CMS Guide CMS Training Web Address for Training http://mirror.frostburg.edu/training Common Tasks in the CMS Guide 1 Getting Help Quick Test Script Documentation that takes you quickly through a set of common tasks.

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

User manual Scilab Cloud API

User manual Scilab Cloud API User manual Scilab Cloud API Scilab Cloud API gives access to your engineering and simulation knowledge through web services which are accessible by any network-connected machine. Table of contents Before

More information