Lampiran 1: Struktur Organisasi PT. Argo Manunggal Triasta

Size: px
Start display at page:

Download "Lampiran 1: Struktur Organisasi PT. Argo Manunggal Triasta"

Transcription

1 Lampiran 1: Struktur Organisasi PT. Argo Manunggal Triasta 1

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

3 Lampiran 3 : Nota 3

4 Lampiran 4 : Jurnal Umum 4

5 Lampiran 5: Laporan Kas Kecil A. Laporan kas AMT1 B. Laporan Kas AMT2 5

6 Lampiran 6 : Bukti Pengeluran Kas kecil 6

7 Lampiran 7: Jurnal Bimbingan Laporan PKL 7

8 Lampiran 8 : Jurnal Praktek Kerja Lapangan 8

9 9

10 Lampiran 9 : Rekapitulasi Kehadiran Praktek Kerja 10

11 Lampiran 10 : Surat Keterangan Praktek Kerja 11

12 Lampiran 11 : Campiran Coding A. Menu Login <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>start Bootstrap - SB Admin Version 2.0 Demo</title> <!-- Core CSS - Include with every page --> <link href="css/bootstrap.min.css" rel="stylesheet"> <link href="font-awesome/css/font-awesome.css" rel="stylesheet"> <!-- SB Admin CSS - Include with every page --> <link href="css/sb-admin.css" rel="stylesheet"> </head> <body> <div class="row"> <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> if(isset($_post['login'])) include("koneksi.php"); $username = $_POST['username']; $password = $_POST['password']; // query untuk mendapatkan record dari username $login = mysqli_query($connect, "SELECT * FROM user"); $row=mysqli_fetch_array($login); if ($row['username']==$username && $password == $password) session_start(); $_SESSION['nama'] = $row['nama']; $_SESSION['username'] = $row['username']; header('location: menuutama/index.php'); else echo "<center><br><br><br><br><br><br><b>login GAGAL! </b><br> Username atau Password Anda tidak benar.<br>"; echo "<br>"; echo "<input class='btn btn-blue' type=button value='ulangi LAGI' 12

13 onclick=location.href='login.php'></a></center>"; <div class="panel-body"> <form action="" method="post"> <fieldset> <div class="form-group"> <input class="form-control" placeholder="username" name="username" type="text" autofocus required > <div class="form-group"> <input class="form-control" placeholder="password" name="password" type="password" value="" required> <!-- Change this to a button or input when using this as a form --> <input class="btn btn-lg btn-success btn-block" type="submit" name="login" value="login"> </fieldset> </form> <!-- Core Scripts - Include with every page --> <script src="js/jquery js"></script> <script src="js/bootstrap.min.js"></script> <script src="js/plugins/metismenu/jquery.metismenu.js"></script> <!-- SB Admin Scripts - Include with every page --> <script src="js/sb-admin.js"></script> </body> </html> B. Beranda include_once 'dbconfig.php'; include_once 'header.php'; <div class="clearfix"> <h1>beranda</h1> <div class="clearfix"><br /> Selamat datang di web resmi perusahaan kami</br> 13

14 <img src="gambarpabrik.jpg" height="500px" width="700px"> </table> C. Menu Master Data SETSALDO include_once 'dbconfig.php'; include_once 'header.php'; <div class="clearfix"> <h1>master Data</h1> <div class="clearfix"><br /> <center> <a href=" /index.php" /><img src="setsaldoicon.png" height="150px" width="150px" button type="submit" class="btn btnprimary" name="btn-save" > </button> </a> <ahref=" ldo/index.php"/><img src="saldoicon.png" height="150px" width="150px"button type="submit" class="btn btnprimary" name="btn-save"> </button> </a> </br></br></br> <a href=" /index.php"/><img src="rekeningicon.png" height="150px" width="150px"button type="submit" class="btn btnprimary" name="btn-save"></button> </a><a href=" ning/index.php"/><img src="datarekening.png" height="150px" width="150px"button type="submit" class="btn btn-primary" name="btn-save"></button> </a></center> D. Menu Set Saldo 14

15 include_once 'dbconfig.php'; if(isset($_post['btn-save'])) $periode = $_POST['periode']; $tahun = $_POST['tahun']; $koderek= $_POST['koderek']; $jumlahsaldo = $_POST['jumlahsaldo']; if($crud->create($periode,$tahun,$koderek,$jumlahsaldo)) header("location: index.php?inserted"); else header("location: index.php?failure"); include_once 'header.php'; <div class="clearfix"> if(isset($_get['inserted'])) <div class="alert alert-info"> Saldo berhasil di tambahkan <a href=" p">kembali</a>! else if(isset($_get['failure'])) <div class="alert alertwarning"> Saldo gagal di tambahkan <div class="clearfix"><br /> <h3>tambah Saldo</h3> 15

16 <form method='post'> <table class='table table-bordered'> <td>periode</td> <td><input type='date' name='periode' class='formcontrol' required></td> <td>tahun</td> <td><select name="tahun"> <option value="">pilih Tahun</option> $thn_skr = date('y'); for ($x = $thn_skr; $x >= 2010; $x--) <option value=" echo $x "> echo $x </option> </td> </select> <td>kode Bagian</td> <td> <select name="koderek" > $odb=new PDO('mysql:host=localhost;dbname=petty_cash', 'root', ''); $query = "select * from divisi"; $data = $odb->prepare($query); // Prepare query for execution $data->execute();// Execute (run) the query while($row=$data->fetch(pdo::fetch_assoc)) echo '<option value="'.$row['nama_divisi'].'">'.$row['nama_divisi'].'< /option>'; //print_r($row); </select> </td> <td>jumlah</td> <td><input type='text' name='jumlahsaldo' class='formcontrol' required></td> 16

17 <td colspan="2"> <button type="submit" class="btn btn-primary" name="btnsave"> <span class="glyphicon glyphicon-plus"></span> Tambah</button> <a href=" p" class="btn btn-large btn-success"><i class="glyphicon glyphicon-backward"></i> Kembali ke Menu</a> </td> </table> </form> E. DATASALDO include_once 'dbconfig.php'; include_once 'header.php'; <div class="clearfix"> <h1>data Saldo</h1> <div class="clearfix"><br /> <table class='table table-bordered table-responsive'> <th>id</th> <th>periode</th> <th>tahun</th> <th>kode</th> <th>jumlah</th> <th>edit</th> <th>hapus</th> $query = "SELECT * FROM saldo_awal"; $records_per_page=500; $newquery = $crud->paging($query,$records_per_page); $crud->dataview($newquery); <td colspan="7" align="center"> <div class="pagination-wrap"> $crud->paginglink($query,$records_per_page); 17

18 </td> </table> F. MENU REKENING include_once 'dbconfig.php'; if(isset($_post['btn-save'])) $kode_rekening = $_POST['kode_rekening']; $bagian = $_POST['bagian']; $nama_rekening= $_POST['nama_rekening']; $deskripsi = $_POST['deskripsi']; if($crud- >create($kode_rekening,$bagian,$nama_rekening,$deskripsi )) header("location: index.php?inserted"); else header("location: index.php?failure"); include_once 'header.php'; <div class="clearfix"> if(isset($_get['inserted'])) <div class="alert alert-info"> Rekening berhasil di tambahkan <a href=" p">kembali ke Menu</a>! else if(isset($_get['failure'])) 18

19 <div class="alert alert-warning"> Rekening gagal di tambahkan <div class="clearfix"><br /> <h3>tambah Rekening</h3> <form method='post'> <table class='table table-bordered'> <td>kode Rekening</td> <td><input type='text' name='kode_rekening' class='formcontrol' required></td> <td>bagian</td> <td><select name="bagian" > $odb=new PDO('mysql:host=localhost;dbname=petty_cash', 'root', ''); $query = "select * from divisi"; $data = $odb->prepare($query); // Prepare query for execution $data->execute();// Execute (run) the query while($row=$data->fetch(pdo::fetch_assoc)) echo '<option value="'.$row['nama_divisi'].'">'.$row['nama_divisi'].'< /option>'; //print_r($row); </select> <td>account</td> <td><input type='text' name='nama_rekening' class='form-control' required></td> <td>rekening</td> <td><input type='text' name='deskripsi' class='formcontrol' required></td> <td colspan="2"> 19

20 <button type="submit" class="btn btn-primary" name="btnsave"> <span class="glyphicon glyphicon-plus"></span> Tambah </button> <a href=" p" class="btn btn-large btn-success"><i class="glyphicon glyphicon-backward"></i> Kembali ke Menu</a></td> </table> </form> G. MENU DATA REKENING include_once 'dbconfig.php'; include_once 'header.php'; <div class="clearfix"> <h1>data Rekening</h1> <div class="clearfix"><br /> <table class='table table-bordered table-responsive'> <th>kode Rekening</th> <th>bagian</th> <th>account</th> <th>deskripsi</th> <th>edit</th> <th>hapus</th> $query = "SELECT * FROM rekening"; $records_per_page=10; $newquery = $crud->paging($query,$records_per_page); $crud->dataview($newquery); <td colspan="7" align="center"> <div class="pagination-wrap"> $crud->paginglink($query,$records_per_page); </td> 20

21 </table> EDIT F include_once 'dbconfig.php'; if(isset($_post['btn-update'])) $kode_rekening = $_POST['kode_rekening']; $bagian = $_POST['bagian']; $nama_rekening = $_POST['nama_rekening']; $deskripsi = $_POST['deskripsi']; if($crud- >update($kode_rekening,$bagian,$nama_rekening,$desk ripsi)) $msg = "<div class='alert alert-info'> <strong></strong> Rekening telah berhasil di perbarui <a href='index.php'>home</a>! "; else $msg = "<div class='alert alert-warning'> <strong>sorry!</strong> ERROR while updating record! "; if(isset($_get['edit_id'])) $id = $_GET['edit_id']; extract($crud->getid($id)); include_once 'header.php'; <div class="clearfix"> if(isset($msg)) 21

22 echo $msg; <div class="clearfix"><br /> <h3>edit Data Rekening</h3> <form method='post'> <table class='table table-bordered'> <td>kode Rekening</td> <td><input type='text' name='kode_rekening' class='form-control' value=" echo $id; " required></td> <td>bagian</td> <td><input type='text' name='bagian' class='formcontrol' value=" echo $bagian; " required></td> <td>nama Rekening</td> <td><input type='text' name='nama_rekening' class='form-control' value=" echo $nama_rekening; " required></td> <td>deskripsi</td> <td><input type='text' name='deskripsi' class='form-control' value=" echo $deskripsi; " required></td> <td colspan="2"> <button type="submit" class="btn btn-primary" name="btn-update"> <span class="glyphicon glyphicon-edit"></span> Update Data Rekening </button> <a href="index.php" class="btn btn-large btnsuccess"><i class="glyphicon glyphiconbackward"></i> Kembali</a> </td> </table> </form> 22

23 HAPUS include_once 'dbconfig.php'; if(isset($_post['btn-del'])) $id = $_GET['delete_id']; $crud->delete($id); header("location: delete.php?deleted"); include_once 'header.php'; <div class="clearfix"> <h3>kembali ke </h3> if(isset($_get['deleted'])) <div class="alert alert-success"> Data Rekening berhasil di hapus else <div class="alert alert-danger"> Apakah anda yakin akan menghapus data rekening ini? <div class="clearfix"> if(isset($_get['delete_id'])) <table class='table table-bordered'> 23

24 <th>kode Rekening</th> <th>bagian</th> th>nama Rekening</th> <th>deskripsi</th> $stmt = $DB_con->prepare("SELECT * FROM rekening WHERE kode_rekening=:kode_rekening"); $stmt- >execute(array(":kode_rekening"=>$_get['delete_id'] )); while($row=$stmt->fetch(pdo::fetch_both)) tr> <td> print($row['kode_rekening']); </td> <td> print($row['bagian']); </td> <td> print($row['nama_rekening']); </td> <td> print($row['deskripsi']); </td> </table> <p> if(isset($_get['delete_id'])) <form method="post"> <input type="hidden" name="id" value=" echo $row['id']; " /> <button class="btn btn-large btn-primary" type="submit" name="btn-del"><i class="glyphicon glyphicon-trash"></i> Ya</button> <a href="index.php" class="btn btn-large btnsuccess"><i class="glyphicon glyphiconbackward"></i> Tidak</a> </form> 24

25 else <a href="index.php" class="btn btn-large btnsuccess"><i class="glyphicon glyphiconbackward"></i> Kembali ke Menu</a> </p> include_once 'footer.php'; H. MENU KAS KELUAR include_once 'dbconfig.php'; include_once 'header.php'; <div class="clearfix"> <h1>kas Keluar</h1> <div class="clearfix"><br /> <center> <a href=" amt1/index.php"/><button type="submit" class="btn btnprimary" name="btn-save" > <span class="glyphicon glyphicon-plus"></span> Kas Keluar AMT 1 </button> </a> <a href=" amt2/index.php"/><button type="submit" class="btn btnprimary" name="btn-save"> <span class="glyphicon glyphicon-plus"></span> Kas Keluar AMT 2</button> </a> </center> 25

26 I. MENU KAS KELUAR AMT1 include_once 'dbconfig.php'; if(isset($_post['btn-save'])) $tanggal = $_POST['tanggal']; $koderekening = $_POST['koderekening']; $bagian= $_POST['bagian']; $jumlah = $_POST['jumlah']; $keterangan = $_POST['keterangan']; if($crud- >create($tanggal,$bagian,$koderekening,$jumlah,$keterang an)) header("location: index.php?inserted"); else header("location: index.php?failure"); include_once 'header.php'; <div class="clearfix"> if(isset($_get['inserted'])) <div class="alert alert-info"> Kas berhasil di tambahkan <a href="index.php">kembali ke Menu</a>! else if(isset($_get['failure'])) <div class="alert alert-warning"> Kas gagal di tambahkan 26

27 <div class="clearfix"><br /> <h3>tambah Kas Keluar AMT 1</h3> <form method='post'> <table class='table table-bordered'> <td>tanggal</td> <td><input type='date' name='tanggal' class='formcontrol' required></td> <td>kode Bagian</td> <td> <select name="koderekening" > php $odb=new PDO('mysql:host=localhost;dbname=petty_cash', 'root', ''); $query = "select * from divisi"; $data = $odb->prepare($query); // Prepare query for execution $data->execute();// Execute (run) the query while($row=$data->fetch(pdo::fetch_assoc)) echo '<option value="'.$row['nama_divisi'].'">'.$row['nama_divisi'].'< /option>'; //print_r($row); </select> <td>kode Rekening</td> <td><select name="bagian" > $odb=new PDO('mysql:host=localhost;dbname=petty_cash', 'root', ''); $query = "select * from rekening"; $data = $odb->prepare($query); // Prepare query for execution $data->execute();// Execute (run) the query while($row=$data->fetch(pdo::fetch_assoc)) echo '<option value="'.$row['kode_rekening'].'">'.$row['kode_rekening' ].'</option>'; //print_r($row); 27

28 </select></td> <td>jumlah</td> <td><input type='text' name='jumlah' class='formcontrol' required></td> <td>keterangan</td> <td><input type='text' name='keterangan' class='formcontrol' required></td> <td colspan="2"> <button type="submit" class="btn btn-primary" name="btnsave"> <span class="glyphicon glyphicon-plus"></span> Tambah </button> <a href=" " class="btn btn-large btn-success"><i class="glyphicon glyphicon-backward"></i> Kembali</a> </td> </table> </form> J. MENU KAS KELUAR AMT2 include_once 'dbconfig.php'; if(isset($_post['btn-save'])) $tanggal = $_POST['tanggal']; $koderekening = $_POST['koderekening']; $bagian= $_POST['bagian']; $jumlah = $_POST['jumlah']; $keterangan = $_POST['keterangan']; if($crud- >create($tanggal,$bagian,$koderekening,$jumlah,$keterang an)) header("location: index.php?inserted"); else header("location: index.php?failure"); 28

29 include_once 'header.php'; <div class="clearfix"> if(isset($_get['inserted'])) <div class="alert alert-info"> Kas berhasil di tambahkan <a href="index.php">kembali ke Menu</a>! else if(isset($_get['failure'])) <div class="alert alert-warning"> Kas gagal di tambahkan <div class="clearfix"><br /> <h3>tambah Kas Keluar AMT 2</h3> <form method='post'> <table class='table table-bordered'> <td>tanggal</td> <td><input type='date' name='tanggal' class='formcontrol' required></td> <td>kode Bagian</td> <td><select name="koderekening" > $odb=new PDO('mysql:host=localhost;dbname=petty_cash', 'root', ''); query = "select * from divisi"; $data = $odb->prepare($query); // Prepare query for execution $data->execute();// Execute (run) the query while($row=$data->fetch(pdo::fetch_assoc)) 29

30 echo '<option value="'.$row['nama_divisi'].'">'.$row['nama_divisi'].'< /option>'; //print_r($row); </select> <td>kode Rekening</td> <td><select name="bagian" > $odb=new PDO('mysql:host=localhost;dbname=petty_cash', 'root', ''); $query = "select * from rekening"; $data = $odb->prepare($query); // Prepare query for execution data->execute();// Execute (run) the query ($row=$data->fetch(pdo::fetch_assoc)) echo '<option value="'.$row['kode_rekening'].'">'.$row['kode_rekening' ].'</option>'; //print_r($row); </select></td> <td>jumlah</td> <td><input type='text' name='jumlah' class='formcontrol' required></td> <td>keterangan</td> <td><input type='text' name='keterangan' class='formcontrol' required></td> <td colspan="2"> <button type="submit" class="btn btn-primary" name="btnsave"> <span class="glyphicon glyphicon-plus"></span> Tambah </button> <a href=" " class="btn btn-large btn-success"><i class="glyphicon glyphicon-backward"></i> Kembali</a> 30

31 </td> </table> </form> K. MENU DATA KAS KELUAR include_once 'dbconfig.php'; include_once 'header.php'; <div class="clearfix"> <h1>data Kas Keluar</h1> <div class="clearfix"><br /> <center> <a href=" t1/index.php"/><button type="submit" class="btn btnprimary" name="btn-save" > <span class="glyphicon glyphicon-plus"></span> AMT 1 </button> </a> <a href=" t2/index.php"/><button type="submit" class="btn btnprimary" name="btn-save"><span class="glyphicon glyphicon-plus"></span> AMT 2</button> </a> </center> L. MENU KAS KELUAR AMT 1 include_once 'dbconfig.php'; include_once 'header.php'; <div class="clearfix"> <h1>data Kas Keluar AMT1</h1> 31

32 <div class="clearfix"><br /> <table class='table table-bordered table-responsive'> <th>id</th> <th>tanggal</th> <th>bagian</th> <th>norekening</th> th>jumlah</th> <th>keterangan</th> $query = "SELECT * FROM kas_keluar_amt1"; $ $newquery = $crud->paging($query,$records_per_page); $crud->dataview($newquery); <td colspan="7" align="center"> <div class="pagination-wrap"> $crud->paginglink($query,$records_per_page); </td> </table> M. MENU DATA KAS KELUAR AMT2 include_once 'dbconfig.php'; include_once 'header.php'; <div class="clearfix"> <h1>data Kas Keluar AMT2</h1> <div class="clearfix"><br /> table class='table table-bordered table-responsive'> <th>id</th> <th>tanggal</th> <th>bagian</th> <th>norekening</th> th>jumlah</th> 32

33 <th>keterangan</th> $query = "SELECT * FROM kas_keluar_amt2"; $records_per_page=500; newquery = $crud->paging($query,$records_per_page); $crud->dataview($newquery); <td colspan="7" align="center"> <div class="pagination-wrap"> $crud->paginglink($query,$records_per_page); </td> </table> N. MENU NOTA include_once 'dbconfig.php'; include_once 'header.php'; <div class="clearfix"> <h1>nota</h1> <div class="clearfix"><br /> <center> <a href=" "/><button type="submit" class="btn btn-primary" name="btn-save" > <span class="glyphicon glyphicon-plus"></span> Nota AMT 1 </button> </a> <a href=" "/><button type="submit" class="btn btn-primary" name="btn-save"> <span class="glyphicon glyphicon-plus"></span> Nota AMT 2 </button> </a> </center> 33

34 O. MENU NOTA AMT1 include_once 'dbconfig.php'; include_once 'header.php'; <div class="clearfix"> <h1>nota AMT 1</h1> <div class="clearfix"><br /> <table class='table table-bordered table-responsive'> <th>id</th> <th>tanggal</th> <th>bagian</th> <th>kode Rekening</th> <th>jumlah Kas Keluar</th> <th>jumlah Saldo</th> <th>keterangan</th> <th>cetak Nota</th> $query = "SELECT * FROM kas_keluar_amt1 "; $records_per_page=500; newquery = $crud->paging($query,$records_per_page); $crud->dataview($newquery); <td colspan="7" align="center"> <div class="pagination-wrap"> $crud->paginglink($query,$records_per_page); </td> </table> 34

35 P. MENU NOTA AMT2 include_once 'dbconfig.php'; include_once 'header.php'; <div class="clearfix"> <h1>nota AMT 2</h1> <div class="clearfix"><br /> <table class='table table-bordered table-responsive'> <th>id</th> <th>tanggal</th> <th>bagian</th> <th>kode Rekening</th> <th>jumlah Kas Keluar</th> <th>jumlah Saldo</th> <th>keterangan</th> <th>cetak Nota</th> $query = "SELECT * FROM kas_keluar_amt2 "; %records_per_page=500; $newquery = $crud->paging($query,$records_per_page); $crud->dataview($newquery); <td colspan="7" align="center"> <div class="pagination-wrap"> $crud->paginglink($query,$records_per_page); </td> </table> 35

Lampiran Source Code:

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

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

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

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

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

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

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

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

Lampiran. Lampiran 1 : Database

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

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

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

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

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

Bootstrap 1/20

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

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

PROJECT ON EMPLOYEE DATABASE AND PAYROLL MANAGEMENT SYSTEM

PROJECT ON EMPLOYEE DATABASE AND PAYROLL MANAGEMENT SYSTEM PROJECT ON EMPLOYEE DATABASE AND PAYROLL MANAGEMENT SYSTEM REPORT OF MAJOR PROJECT SUBMITTED FOR FULFILLMENT OF THE REQUIREMENT FOR THE DEGREE OF MASTER IN COMPUTER APPLICATION MARCUS ATISH D ROZARIO REGISTRATION

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

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

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

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

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

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

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

More information

Create First Web Page With Bootstrap

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

More information

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

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

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

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

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

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

Understanding Basic SQL Injection

Understanding Basic SQL Injection Understanding Basic SQL Injection SQL injection (also known as SQLI) is a code injection technique that occurs if the user-defined input data is not correctly filtered or sanitized of the string literal

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

How to Set Up a Custom Challenge Page for Authentication

How to Set Up a Custom Challenge Page for Authentication How to Set Up a Custom Challenge Page for Authentication Setting up a custom challenge page is a three step process: 1. Create a custom challenge page. Deploy the created custom challenge page on your

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

Lecture 7. Action View, Bootstrap & Deploying 1 / 40

Lecture 7. Action View, Bootstrap & Deploying 1 / 40 Lecture 7 Action View, Bootstrap & Deploying 1 / 40 Homeworks 5 & 6 Homework 5 was graded Homework 6 was due last night Any questions? 2 / 40 How would you rate the di culty of Homework 6? Vote at http://pollev.com/cis196776

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

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

Using htmlarea & a Database to Maintain Content on a Website

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

More information

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

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

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

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

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

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

More information

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

SportsStore: Administration

SportsStore: Administration C H A P T E R 11 SportsStore: Administration In this chapter, I continue to build the SportsStore application in order to give the site administrator a way of managing orders and products. Managing Orders

More information

Hyperlinks, Tables, Forms and Frameworks

Hyperlinks, Tables, Forms and Frameworks Hyperlinks, Tables, Forms and Frameworks Web Authoring and Design Benjamin Kenwright Outline Review Previous Material HTML Tables, Forms and Frameworks Summary Review/Discussion Email? Did everyone get

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

LAMPIRAN Kode Program

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

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

New way of learning PHP EXAMPLE PDF. Created By: Umar Farooque Khan. Copyright ptutorial All Rights Reserved

New way of learning PHP EXAMPLE PDF. Created By: Umar Farooque Khan. Copyright ptutorial All Rights Reserved PHP EXAMPLE PDF Created By: Umar Farooque Khan 1 Program No: 01 PHP Generate 10 Random Numbers Using Loop $min=10; $max="100"; echo "Number between 10 to 100"; for($i=0;$i

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

INTRODUCTION TO WEB DEVELOPMENT IN C++ WITH WT 4

INTRODUCTION TO WEB DEVELOPMENT IN C++ WITH WT 4 INTRODUCTION TO WEB DEVELOPMENT IN C++ WITH WT 4 Roel Standaert FOSDEM 2018 https://www.webtoolkit.eu/wt CONTENTS What is Wt? A simple Hello world Creating a larger application, with: Templates Style sheets

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

Date Picker Haim Michael

Date Picker Haim Michael Date Picker Introduction The date picker is one of the most popular jquery widgets in use. It is highly configurable and extremely easy to implement. Introduction Simple Date Picker

More information

Python For Hackers. Shantnu Tiwari. This book is for sale at This version was published on

Python For Hackers. Shantnu Tiwari. This book is for sale at   This version was published on Python For Hackers Shantnu Tiwari This book is for sale at http://leanpub.com/pythonforhackers This version was published on 2015-07-23 This is a Leanpub book. Leanpub empowers authors and publishers with

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

Developing Ajax Applications using EWD and Python. Tutorial: Part 2

Developing Ajax Applications using EWD and Python. Tutorial: Part 2 Developing Ajax Applications using EWD and Python Tutorial: Part 2 Chapter 1: A Logon Form Introduction This second part of our tutorial on developing Ajax applications using EWD and Python will carry

More information

AngularJS. CRUD Application example with AngularJS and Rails 4. Slides By: Jonathan McCarthy

AngularJS. CRUD Application example with AngularJS and Rails 4. Slides By: Jonathan McCarthy AngularJS CRUD Application example with AngularJS and Rails 4 1 Slides By: Jonathan McCarthy Create a new Rails App For this example we will create an application to store student details. Create a new

More information

Django Forme Documentation

Django Forme Documentation Django Forme Documentation Release 0.1.dev Tomáš Ehrlich Sep 27, 2017 Contents 1 Tutorial 3 1.1 Getting started.............................................. 3 1.2 Basic example..............................................

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

COMP1000 Mid-Session Test 2017s1

COMP1000 Mid-Session Test 2017s1 COMP1000 Mid-Session Test 2017s1 Total Marks: 45 Duration: 55 minutes + 10 min reading time This examination has three parts: Part 1: 15 Multiple Choice Questions (15 marks /45) Part 2: Practical Excel

More information

AngularJS. CRUD Application example with AngularJS and Rails 4. Slides By: Jonathan McCarthy

AngularJS. CRUD Application example with AngularJS and Rails 4. Slides By: Jonathan McCarthy AngularJS CRUD Application example with AngularJS and Rails 4 1 Slides By: Jonathan McCarthy Create a new Rails App For this example we will create an application to store student details. Create a new

More information

CPET 499/ITC 250 Web Systems

CPET 499/ITC 250 Web Systems CPET 499/ITC 250 Web Systems Chapter 11 Working with Databases Part 2 of 3 Text Book: * Fundamentals of Web Development, 2015, by Randy Connolly and Ricardo Hoar, published by Pearson Paul I-Hai, Professor

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

Programming web design MICHAEL BERNSTEIN CS 247

Programming web design MICHAEL BERNSTEIN CS 247 Programming web design MICHAEL BERNSTEIN CS 247 Today: how do I make it?! All designers need a medium. Napkin sketches aren t enough.! This week: core concepts for implementing designs on the web! Grids!

More information

HTML Forms IT WS I - Lecture 11

HTML Forms IT WS I - Lecture 11 HTML Forms IT WS I - Lecture 11 Saurabh Barjatiya International Institute Of Information Technology, Hyderabad 04 October, 2009 Contents Seeing submitted values 1 Seeing submitted values 2 3 Seeing submitted

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

web-sockets-homework Directions

web-sockets-homework Directions web-sockets-homework Directions For this homework, you are asked to use socket.io, and any other library of your choice, to make two web pages. The assignment is to create a simple box score of a football

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

Bootstrap Carousel. jquery Image Sliders

Bootstrap Carousel. jquery Image Sliders Bootstrap Carousel jquery Image Sliders Bootstrap Carousel Carousel bootstarp css js jquery js bootstrap.js http://getbootstrap.com/javascript/#carousel item ol.carousel-indicators li

More information

Guest Access Portal Integration

Guest Access Portal Integration Integrate the cnpilot enterprise Access Points with an external Guest Access Portal Guest Access Portal Integration cnpilot E400, E500, epmp1000 Hotspot Cambium Networks Ltd. All rights reserved. Table

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

CSC Web Technologies, Spring HTML Review

CSC Web Technologies, Spring HTML Review CSC 342 - Web Technologies, Spring 2017 HTML Review HTML elements content : is an opening tag : is a closing tag element: is the name of the element attribute:

More information

-struts_annotation_bootstrap Estrutura do preojeto... LIBS: asm-3.3.jar asm-commons-3.3.jar commons-fileupload-1.3.jar commons-io-2.0.1.jar commons-lang-2.4.jar commons-lang3-3.1.jar freemarker-2.3.19.jar

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

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

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

More information

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

Form Processing in PHP

Form Processing in PHP Form Processing in PHP Forms Forms are special components which allow your site visitors to supply various information on the HTML page. We have previously talked about creating HTML forms. Forms typically

More information

thymeleaf #thymeleaf

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

More information

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

index.php pemetaan Gizi Palembang

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

Spring 2014 Interim. HTML forms

Spring 2014 Interim. HTML forms HTML forms Forms are used very often when the user needs to provide information to the web server: Entering keywords in a search box Placing an order Subscribing to a mailing list Posting a comment Filling

More information

I completely understand your anxiety when starting learn codeigniter.

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

More information

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

Want to read more? You can buy this book at oreilly.com in print and ebook format. Buy 2 books, get the 3rd FREE!

Want to read more? You can buy this book at oreilly.com in print and ebook format. Buy 2 books, get the 3rd FREE! Want to read more? You can buy this book at oreilly.com in print and ebook format. Buy 2 books, get the 3rd FREE! Use discount code: OPC10 All orders over $29.95 qualify for free shipping within the US.

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

SmileTiger emeeting Server 2008 Integration Guide

SmileTiger emeeting Server 2008 Integration Guide SmileTiger emeeting Server 2008 Integration Guide SmileTiger Software Corporation 11615 Sir Francis Drake Drive Charlotte, NC 28277 USA Tel: + 1 704 321 9068 Fax: +1 704 321 5129 http://www.smiletiger.com

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

LISTING KODE PROGRAM

LISTING KODE PROGRAM LISTING KODE PROGRAM Kategori PHP

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

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