LAMPIRAN. a. Kode Program Untuk Halaman Cari Data Proyek

Size: px
Start display at page:

Download "LAMPIRAN. a. Kode Program Untuk Halaman Cari Data Proyek"

Transcription

1 LAMPIRAN 1. Kode Program a. Kode Program Untuk Halaman Cari Data Proyek <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" " <html xmlns=" <head> <meta http-equiv="content-type" content="text/html; charset=iso " /> <title>selamat Datang Di File Repository KPTA D3 Teknik Informatika UKSW</title> <link rel="stylesheet" href="css/style.css" type="text/css" /> <link rel="icon" href="images/icon.png" type="image/ico" > <script language=javascript> <!-- var rev = "fwd"; function titlebar(val) { var msg = "Selamat Datang Di File Repository D3 Teknik Informatika Universitas Kristen Satya Wacana"; var res = " "; var speed = 100; var pos = val; msg = " "+msg+" "; var le = msg.length; if(rev == "fwd"){ if(pos < le){ pos = pos+1; scroll = msg.substr(0,pos); document.title = scroll; timer = window.settimeout("titlebar("+pos+")",speed); else{ rev = "bwd"; timer = window.settimeout("titlebar("+pos+")",speed); 78

2 79 else{ if(pos > 0){ pos = pos-1; var ale = le-pos; scrol = msg.substr(ale,le); document.title = scrol; timer = window.settimeout("titlebar("+pos+")",speed); titlebar(0); function MM_jumpMenu(targ,selObj,restore){ //v3.0 eval(targ+".location='"+selobj.options[selobj.selectedindex].va lue+"'"); if (restore) selobj.selectedindex=0; //--> </script> </head> <body background="images/background.png"> <div id="header"> <table width="1350" height="100"border="0"> <td><table width="1200" border="0"> <td width="86"><img src="images/icon.png" alt="" width="80" height="80" /></td> <td width="898" align="left" valign="middle"><p>sistem INFORMASI FILE REPOSITORY KERJA PRAKTEK & TUGAS AKHIR </p> <p>d3 TEKNIK INFORMATIKA UNIVERSITAS KRISTEN SATYA WACANA</p> </td> </td> <div id="cssmenu"> <ul>

3 <li class='active '><a href="home.php"><span>home</span></a></li> <li><a href="about.php"><span>about</span></a></li> <li><a href="panduan.php"><span>panduan</span></a></li> <li><a href="proyek.php"><span>cari Data Proyek</span></a></li> <li><a href="kerjapraktek.php"><span>cari Data Kerja Praktek</span></a></li> <li><a href="tugasakhir.php"><span>cari Data Tugas Akhir</span></a></li> <li><a href="logout.php"><span>logout</span></a></li> </ul> <center><div id="content"> <table width="800" border="0"> <td align="center"> <h2><font color="#ffffff"><b>daftar Mahasiswa Proyek</h2></td> <form action="proyek.php" method="post"> <table width="298" height="105" border="0" align="center" cellpadding="0" cellspacing="0"> <td width="140" height="39">cari Berdasarkan</td> <td width="11">:</td> <td width="147"><select name="berkas" id="berkas"> <option>---pilihan---</option> <option value="nim">nim</option> <option value="nama_mahasiswa">nama Mahasiswa</option> <option value="nama_konsentrasi">konsentrasi</option> <option value="judul">judul</option> </select></td> <td height="32">keyword</td> <td>:</td> <td><input type="text" name="keyword" id="keyword" /></td> <td height="34"> </td> <td> </td> 80

4 81 <td><input type="submit" name="submit" value="cari" /></td> </form> <table border="10" cellpadding="0" cellspacing="0" align="center" bordercolor="#000000" bgcolor="#0066ff"><br /> <thead> <td width="auto" align="center">no</td> <td width="auto" align="center">jenis AMBIL</td> <td width="auto" align="center">nim</td> <td width="auto" align="center">nama MAHASISWA</td> <td width="auto" align="center">konsentrasi</td> <td width="auto" align="center">dosen PEMBIMBING</td> <td width="auto" align="center">judul</td> <td width="auto" align="center">semester</td> <td width="auto" align="center">tahun</td> <td width="auto" align="center">status</td> </thead> <?php include "koneksi.php"; $no=1; $sql = "SELECT count(id_proyek) FROM proyek"; $row = mysql_query($sql); $row = = $row[0]; $batas = 2; // Mengecek eksistensi variabel '?page' if(isset($_get['page'])) { $page = $_GET['page'] + 1; $offset = $batas * $page ; else { $page = 0; $offset = 0; if (isset($_post['submit'])) { $berkas = $_POST['berkas']; $keyword = $_POST['keyword'];

5 82 // Menampilkan baris tabel $left_rec = $hitung - ($page * $batas); $sql = "SELECT * FROM proyek WHERE $berkas LIKE '%$keyword%' order by id_proyek asc LIMIT $offset, $batas"; $result = mysql_query($sql) or die('pencarian Gagal. '. mysql_error()); if (mysql_num_rows($result) == 0) { echo '<p></p><p>pencarian tidak ditemukan</p>'; else { echo '<p></p>'; while ($row = mysql_fetch_array($result)) { extract($row); echo " <td align='center' bgcolor='#0099ff'>$no</td> <td align='center' bgcolor='#0099ff'>$row[nama_jenis_ambil]</td> <td align='center' bgcolor='#0099ff'>$row[nim]</td> <td align='center' bgcolor='#0099ff'>$row[nama_mahasiswa]</td> <td align='center' bgcolor='#0099ff'>$row[nama_konsentrasi]</td> <td align='center' bgcolor='#0099ff'>$row[nama_dosen]</td> <td align='center' bgcolor='#0099ff'>$row[judul]</td> <td align='center' bgcolor='#0099ff'>$row[semester]</td> <td align='center' bgcolor='#0099ff'>$row[tahun]</td> <td align='center' bgcolor='#0099ff'>$row[status]</td> "; $no++;?> <?php // Menampilkan tombol 'Next' dan 'Previous' if( $page > 0 ) { $last = $page - 2; echo "<a href=\"proyek.php?page=$last\">prev</a> "; echo "<a href=\"proyek2.php?page=$page\">next</a>";

6 83 else if( $page == 0 ) { echo "<a href=\"proyek2.php?page=$page\">next</a>"; else if( $left_rec < $batas ) { $last = $page - 2; echo "<a href=\"proyek.php?page=$last\">prev</a>";?> <div id="footer"> <table width="1350" height="100" border="0"> <td align="center"> </td> <td align="center" valign="bottom"><table width="249" border="0" align="center"> <td align="center"> 2014-<?php echo date("y")?></td> <td align="center">universitas Kristen Satya Wacana</td> </td> </body> </html>

7 84 b. Kode Program Untuk Halaman Input Data TA <?php require_once('connections/koneksi.php');?> <?php if (!function_exists("getsqlvaluestring")) { function GetSQLValueString($theValue, $thetype, $thedefinedvalue = "", $thenotdefinedvalue = "") { if (PHP_VERSION < 6) { $thevalue = get_magic_quotes_gpc()? stripslashes($thevalue) : $thevalue; $thevalue = function_exists("mysql_real_escape_string")? mysql_real_escape_string($thevalue) : mysql_escape_string($thevalue); switch ($thetype) { case "text": $thevalue = ($thevalue!= "")? "'". $thevalue. "'" : "NULL"; break; case "long": case "int": $thevalue = ($thevalue!= "")? intval($thevalue) : "NULL"; break; case "double": $thevalue = ($thevalue!= "")? doubleval($thevalue) : "NULL"; break; case "date": $thevalue = ($thevalue!= "")? "'". $thevalue. "'" : "NULL"; break; case "defined": $thevalue = ($thevalue!= "")? $thedefinedvalue : $thenotdefinedvalue; break; return $thevalue;

8 85 $editformaction = $_SERVER['PHP_SELF']; if (isset($_server['query_string'])) { $editformaction.= "?". htmlentities($_server['query_string']); if ((isset($_post["mm_insert"])) && ($_POST["MM_insert"] == "form1")) { $insertsql = sprintf("insert INTO tugasakhir (id_tugasakhir, nama_jenis_ambil, nim, nama_mahasiswa, nama_konsentrasi, nama_dosen, judul, semester, tahun, status) VALUES (%s, %s, %s, %s, %s, %s, %s, %s, %s, %s)", GetSQLValueString($_POST['id_tugasakhir'], "int"), GetSQLValueString($_POST['nama_jenis_ambil'], "text"), GetSQLValueString($_POST['nim'], "int"), GetSQLValueString($_POST['nama_mahasiswa'], "text"), GetSQLValueString($_POST['nama_konsentrasi'], "text"), GetSQLValueString($_POST['nama_dosen'], "text"), GetSQLValueString($_POST['judul'], "text"), GetSQLValueString($_POST['semester'], "text"), GetSQLValueString($_POST['tahun'], "int"), GetSQLValueString($_POST['status'], "text")); mysql_select_db($database_koneksi, $koneksi); $Result1 = mysql_query($insertsql, $koneksi) or die(mysql_error()); $maxrows_tugasakhir = 10; $pagenum_tugasakhir = 0; if (isset($_get['pagenum_tugasakhir'])) { $pagenum_tugasakhir = $_GET['pageNum_tugasakhir'];

9 86 $startrow_tugasakhir = $pagenum_tugasakhir * $maxrows_tugasakhir; mysql_select_db($database_koneksi, $koneksi); $query_tugasakhir = "SELECT * FROM tugasakhir ORDER BY id_tugasakhir ASC"; $query_limit_tugasakhir = sprintf("%s LIMIT %d, %d", $query_tugasakhir, $startrow_tugasakhir, $maxrows_tugasakhir); $tugasakhir = mysql_query($query_limit_tugasakhir, $koneksi) or die(mysql_error()); $row_tugasakhir = mysql_fetch_assoc($tugasakhir); if (isset($_get['totalrows_tugasakhir'])) { $totalrows_tugasakhir = $_GET['totalRows_tugasakhir']; else { $all_tugasakhir = mysql_query($query_tugasakhir); $totalrows_tugasakhir = mysql_num_rows($all_tugasakhir); $totalpages_tugasakhir = ceil($totalrows_tugasakhir/$maxrows_tugasakhir)-1;?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" " <html xmlns=" <head> <meta http-equiv="content-type" content="text/html; charset=iso " /> <link rel="icon" href="images/icon.png" type="image/ico" > <title>selamat Datang Di File Repository KPTA D3 Teknik Informatika UKSW</title> <link rel="stylesheet" href="css/style1.css" type="text/css" /> <script language=javascript> <!-- var rev = "fwd"; function titlebar(val) { var msg = "SSelamat Datang Di File Repository KPTA D3 Teknik Informatika Universitas Kristen Satya Wacana"; var res = " "; var speed = 100; var pos = val;

10 87 msg = " "+msg+" "; var le = msg.length; if(rev == "fwd"){ if(pos < le){ pos = pos+1; scroll = msg.substr(0,pos); document.title = scroll; timer = window.settimeout("titlebar("+pos+")",speed); else{ rev = "bwd"; timer = window.settimeout("titlebar("+pos+")",speed); else{ if(pos > 0){ pos = pos-1; var ale = le-pos; scrol = msg.substr(ale,le); document.title = scrol; timer = window.settimeout("titlebar("+pos+")",speed); else{ rev = "fwd"; timer = window.settimeout("titlebar("+pos+")",speed); titlebar(0); function MM_jumpMenu(targ,selObj,restore){ //v3.0 eval(targ+".location='"+selobj.options[selobj.selectedindex].va lue+"'"); if (restore) selobj.selectedindex=0; //-->

11 88 </script> </head> <body background="images/background.png"> <div id="header"> <table width="1000" height="100"border="0"> <td><table width="1000" border="0"> <td width="86"><img src="images/icon.png" alt="" width="80" height="80" /></td> <td width="898" align="left" valign="middle"><p align="left">sistem INFORMASI FILE REPOSITORY KERJA PRAKTEK & TUGAS AKHIR </p> <p align="left">d3 TEKNIK INFORMATIKA UNIVERSITAS KRISTEN SATYA WACANA</p> </td> </td> <div id="cssmenu"> <ul> <li class='active '><a href="homeadmin.php"><span>home</span></a></li> <li><a href="panduanadmin.php"><span>panduan</span></a></li> <li><a href="inputdata.php"><span>+ Input Data</span></a></li> <li><a href="hapusdata.php"><span>- Hapus Data</span></a></li> <li><a href="upload.php"><span>upload File</span></a></li> <li><a href="logout.php"><span>logout</span></a></li> </ul> <p> <p> <center><div id="content"> <p><table align="center" width="180" border="0"> <td align="center"><font color="#000000"> Input Data Tugas Akhir</td> <p>

12 89 <form action="<?php echo $editformaction;?>" method="post" name="form1" id="form1"> <table align="center"> <td align="left" nowrap="nowrap"> </td> <td align="left" nowrap="nowrap"> </td> <td><input type="hidden" name="id_tugasakhir" value="" size="32" /></td> <td align="left" nowrap="nowrap">nama_jenis_ambil</td> <td><select name="nama_jenis_ambil"> <option>---jenis Ambil---</option> <option>proyek</option> <option>kerja Praktek</option> <option>tugas Akhir</option> </select></td> <td align="left" nowrap="nowrap">nim</td> <td><input type="text" name="nim" value="" size="32" /></td> <td align="left" nowrap="nowrap">nama_mahasiswa</td> <td><input type="text" name="nama_mahasiswa" value="" size="32" /></td> <td align="left" nowrap="nowrap">nama_konsentrasi</td> <td><select name="nama_konsentrasi"> <option>multimedia</option> <option>pemrograman</option> <option>jaringan</option> </select></td>

13 <td align="left" nowrap="nowrap">nama_dosen</td> <td><select name="nama_dosen"> <option>---dosen---</option> <option>sri Winarso Martyas Edi, S.Kom., M.Cs</option> <option>drs. Prihanto Ngesti Basuki, M.Kom</option> <option>felix David, S.Kom</option> <option>teguh Wahyono, S.Kom., M.Cs</option> <option>erwin Christian, S.Kom</option> </select></td> <td align="left" nowrap="nowrap">judul</td> <td><input type="text" name="judul" value="" size="32" /></td> <td align="left" nowrap="nowrap">semester</td> <td><select name="semester"> <option>---semester---</option> <option>genap</option> <option>antara</option> <option>ganjil</option> </select></td> <td align="left" nowrap="nowrap">tahun</td> <td><select name="tahun"> <option>---tahun---</option> <option>2014</option> <option>2015</option> <option>2016</option> <option>2017</option> </select></td>

14 91 <td align="left" nowrap="nowrap">status</td> <td><select name="status"> <option>---status---</option> <option>aktif</option> <option>proses</option> <option>belum Ambil</option> <option>tidak Aktif</option> </select></td> <td nowrap="nowrap" align="right"> </td> <td nowrap="nowrap" align="right"> </td> <td><input type="submit" value="simpan" /> <input type="reset" name="reset" id="button" value="ulang" /></td> <input type="hidden" name="mm_insert" value="form1" /> </form> <p> </p> <table width="1415" border="1"> <td width="auto" align="center" bgcolor="#0066ff">jenis Ambil</td> <td width="auto" align="center" bgcolor="#0066ff">nim</td> <td width="auto" align="center" bgcolor="#0066ff">nama</td> <td width="auto" align="center" bgcolor="#0066ff">konsentrasi</td> <td width="auto" align="center" bgcolor="#0066ff">pembimbing</td> <td width="auto" align="center" bgcolor="#0066ff">judul</td> <td width="auto" align="center" bgcolor="#0066ff">semester</td> <td width="auto" align="center" bgcolor="#0066ff">tahun</td> <td width="auto" align="center" bgcolor="#0066ff">status</td> <td width="auto" align="center" bgcolor="#0066ff"><div align="center">action</div></td>

15 92 <?php do {?> $row_tugasakhir['nama_jenis_ambil'];?></td> $row_tugasakhir['nim'];?></td> $row_tugasakhir['nama_mahasiswa'];?></td> $row_tugasakhir['nama_konsentrasi'];?></td> $row_tugasakhir['nama_dosen'];?></td> $row_tugasakhir['judul'];?></td> $row_tugasakhir['semester'];?></td> $row_tugasakhir['tahun'];?></td> $row_tugasakhir['status'];?></td> <td align="center" bgcolor="#3399cc"><div align="center"><a href="editta.php?id_tugasakhir=<?php echo $row_tugasakhir['id_tugasakhir'];?>"><img src="images/editvalidated.png" / width="30" height="30"></a><a href="deleteta.php?id_tugasakhir=<?php echo $row_tugasakhir['id_tugasakhir'];?>"><img src="images/delete.png" / width="30" height="30"></a></a></div></td> <?php while ($row_tugasakhir = mysql_fetch_assoc($tugasakhir));?> </div> </div> <div id="footer"> <table width="1430" height="100" border="0"> <td align="center"> </td> <td align="center" valign="bottom"><table width="249" border="0" align="center"> <td align="center"> 2014-<?php echo date("y")?></td>

16 <td align="center">universitas Kristen Satya Wacana</td> </td> </body> </html> <?php mysql_free_result($tugasakhir);?> 93

17 2. Lembar Bimbingan Tugas Akhir 94

LAMPIRAN Kode Program

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

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

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

CAPITULO IV. Sistema Informático de Gestión de Proveedores de Servicios y Productos para

CAPITULO IV. Sistema Informático de Gestión de Proveedores de Servicios y Productos para CAPITULO IV 4. DESARROLLO TÉCNICO DE LA INVESTIGACION 4.1 TITULO Sistema Informático de Gestión de Proveedores de Servicios y Productos para mejorar la tarea de compras publicas en la Unidad de Contratación

More information

A designers guide to creating & editing templates in EzPz

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

More information

Create a cool image gallery using CSS visibility and positioning property

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

More information

Implementing a chat button on TECHNICAL PAPER

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

More information

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

General Management of Higher Education WEBSITE Husam Yaseen Mustafa Bakeer Sami Abu Yusef Mohamed Hamoda

General Management of Higher Education WEBSITE Husam Yaseen Mustafa Bakeer Sami Abu Yusef Mohamed Hamoda July 2010 q General Management of Higher Education WEBSITE Husam Yaseen 120060148 Mustafa Bakeer 120060387 Sami Abu Yusef 120060101 Mohamed Hamoda 120060191 Supervisors: : Eng.Wessam Zaqoot 1 Table of

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

An Introduction to WebSphere Portal content publishing channels

An Introduction to WebSphere Portal content publishing channels An Introduction to WebSphere Portal content publishing channels By Gregory Melahn Software Engineer, IBM Corp. May 2003 Abstract WebSphere Portal content publishing (WPCP) allows you to import news stories

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

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

Internet publishing HTML (XHTML) language. Petr Zámostný room: A-72a phone.:

Internet publishing HTML (XHTML) language. Petr Zámostný room: A-72a phone.: Internet publishing HTML (XHTML) language Petr Zámostný room: A-72a phone.: 4222 e-mail: petr.zamostny@vscht.cz Essential HTML components Element element example Start tag Element content End tag

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

Date Issued: Subject: Editing the HTML files in the C-more panel. Revision: Original

Date Issued: Subject: Editing the HTML files in the C-more panel. Revision: Original APPLICATION NOTE THIS INFORMATION PROVIDED BY AUTOMATIONDIRECT.COM TECHNICAL SUPPORT These documents are provided by our technical support department to assist others. We do not guarantee that the data

More information

Lab 4 CSS CISC1600, Spring 2012

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

More information

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

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

HTML Tags Chart. To use any of the following HTML tags, simply select the HTML code you'd like and copy and paste it into your web page.

HTML Tags Chart. To use any of the following HTML tags, simply select the HTML code you'd like and copy and paste it into your web page. HTML Tags Chart To use any of the following HTML tags, simply select the HTML code you'd like and copy and paste it into your web page. Tag Name Code Example Browser View

More information

User's Guide Visual Profile Appendix L Version 7.5.2

User's Guide Visual Profile Appendix L Version 7.5.2 User's Guide Visual Profile Appendix L Version 7.5.2 MobilityGuard AB Appendix L Visual Profile v 7.4 Table of Contents 1 Introduction...3 2 Configuration...3 2.1 Select a theme to use...3 2.2 The theme

More information

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

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

More information

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

HTML Tags Chart. To use any of the following HTML tags, simply select the HTML code you'd like and copy and paste it into your web page.

HTML Tags Chart. To use any of the following HTML tags, simply select the HTML code you'd like and copy and paste it into your web page. HTML Tags Chart To use any of the following HTML tags, simply select the HTML code you'd like and copy and paste it into your web page. Tag Name Code Example Browser View

More information

Phishing attempt 1. 2. 3. 4.

More information

Copyright 2011 Sakun Sharma

Copyright 2011 Sakun Sharma Maintaining Sessions in JSP We need sessions for security purpose and multiuser support. Here we are going to use sessions for security in the following manner: 1. Restrict user to open admin panel. 2.

More information

Information and Communication Technology: TECHNOLOGY (EXTENDED MEANING) presented by: Rhiza S. Sadjad

Information and Communication Technology: TECHNOLOGY (EXTENDED MEANING) presented by: Rhiza S. Sadjad Information and Communication Technology: TECHNOLOGY (EXTENDED MEANING) presented by: Rhiza S. Sadjad rhiza@unhas.ac.id http://www.unhas.ac.id/rhiza/ Question: What is the ICT? 2 ICT = Information and

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

Unit Notes. ICAWEB411A Produce basic client-side script for dynamic web pages Topic 1 Introduction to JavaScript

Unit Notes. ICAWEB411A Produce basic client-side script for dynamic web pages Topic 1 Introduction to JavaScript Unit Notes ICAWEB411A Produce basic client-side script for dynamic web pages Topic 1 Introduction to JavaScript Copyright, 2013 by TAFE NSW - North Coast Institute Date last saved: 18 September 2013 by

More information

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

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

More information

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

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

More information

I Can t Believe It s Not

I Can t Believe It s Not I Can t Believe It s Not Flash! @thomasfuchs Animating CSS properties Timer JavaScript sets CSS Reflow Rendering Paint Animating CSS properties Timer JavaScript sets CSS Reflow

More information

c360 Web Connect Configuration Guide Microsoft Dynamics CRM 2011 compatible c360 Solutions, Inc. c360 Solutions

c360 Web Connect Configuration Guide Microsoft Dynamics CRM 2011 compatible c360 Solutions, Inc.   c360 Solutions c360 Web Connect Configuration Guide Microsoft Dynamics CRM 2011 compatible c360 Solutions, Inc. www.c360.com c360 Solutions Contents Overview... 3 Web Connect Configuration... 4 Implementing Web Connect...

More information

Exporting a Confluence space as a Website

Exporting a Confluence space as a Website Exporting a Confluence space as a Website This how-to explains how to export a Confluence space using the AutoExport Plugin. How it works. What it does. The AutoExport Plugin for Confluence is a plugin

More information

Server Applications with ASP and XMLComposer

Server Applications with ASP and XMLComposer . TopLeaf 7 How To: Server Applications with ASP and XMLComposer 1. Introduction TopLeaf is a highly adaptable XML composition engine that can be used as part of larger enterprise solutions where dynamic

More information

HTML 5.0 KKCC INFO SYSTEMS. K.SrinivasaRao

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

More information

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

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

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

More information

Advanced HTML 5.1 INTRODUCTION 5.2 OBJECTIVES

Advanced HTML 5.1 INTRODUCTION 5.2 OBJECTIVES 5 Advanced HTML 5.1 INTRODUCTION An effective way to organize web documents, visually, and also logically, by dividing the page into different parts is the necessity of the website today. In each part

More information

CP3343 Computer Science Project (Year) Technical Report Document. Mr Stephen Garner

CP3343 Computer Science Project (Year) Technical Report Document. Mr Stephen Garner CP3343 Computer Science Project (Year) Technical Report Document Mr Stephen Garner Colin Hopson 0482647 Wednesday 23 rd April 2008 i Contents 1 Introduction... 1 2 The Program Listing... 1 2.1 ASP.Net

More information

COSC 2206 Internet Tools. Brief Survey of HTML and XHTML Document Structure Formatting

COSC 2206 Internet Tools. Brief Survey of HTML and XHTML Document Structure Formatting COSC 2206 Internet Tools Brief Survey of HTML and XHTML Document Structure Formatting 1 W3C HTML Home page W3C is the World Wide Web Consortium and their home page has lots of information, links, and a

More information

Come & Join Us at VUSTUDENTS.net

Come & Join Us at VUSTUDENTS.net Come & Join Us at VUSTUDENTS.net For Assignment Solution, GDB, Online Quizzes, Helping Study material, Past Solved Papers, Solved MCQs, Current Papers, E-Books & more. Go to http://www.vustudents.net and

More information

Wed 02 Nov :01:06 AM EST modpow.html

Wed 02 Nov :01:06 AM EST modpow.html Wed 02 Nov 2005 02:01:06 AM EST modpow.html

More information

CITS1231 Web Technologies. PHP s, Cookies and Session Control

CITS1231 Web Technologies. PHP  s, Cookies and Session Control CITS1231 Web Technologies PHP Emails, Cookies and Session Control Sending email with PHP We have looked at storing user information using files. Email messages can also be thought of as data streams, providing

More information

(X)HTML. Internet Engineering. Spring Bahador Bakhshi CE & IT Department, Amirkabir University of Technology

(X)HTML. Internet Engineering. Spring Bahador Bakhshi CE & IT Department, Amirkabir University of Technology (X)HTML Internet Engineering Spring 2018 Bahador Bakhshi CE & IT Department, Amirkabir University of Technology Questions Q2) How is a web page organized? Q2.1) What language is used for web pages? Q2.2)

More information

Exam Format: Multiple Choice, True/False, Short Answer (3 points each 75 points total) Write-the-page (25 points)

Exam Format: Multiple Choice, True/False, Short Answer (3 points each 75 points total) Write-the-page (25 points) CS-101 Fall 2008 Section 4 Practice Final v1.0m Name: Exam Format: Multiple Choice, True/False, Short Answer (3 points each 75 points total) Write-the-page (25 points) XHTML/CSS Reference: Entities: Copyright

More information

TRAINING GUIDE. Rebranding Lucity Web

TRAINING GUIDE. Rebranding Lucity Web TRAINING GUIDE Rebranding Lucity Web Rebranding Lucity Web Applications In this booklet, we ll show how to make the Lucity web applications your own by matching your agency s style. Table of Contents Web

More information

JSF - H:PANELGRID. JSF Tag. Rendered Output. Tag Attributes. The h:panel tag renders an HTML "table" element. Attribute & Description.

JSF - H:PANELGRID. JSF Tag. Rendered Output. Tag Attributes. The h:panel tag renders an HTML table element. Attribute & Description. http://www.tutorialspoint.com/jsf/jsf_panelgrid_tag.htm JSF - H:PANELGRID Copyright tutorialspoint.com The h:panel tag renders an HTML "table" element. JSF Tag

More information

Lecture 6: Web Security CS /17/2017

Lecture 6: Web Security CS /17/2017 Lecture 6: Web Security CS5431 03/17/2017 2015 Security Incidents Web Vulnerabilities by Year 2500 2000 1500 1000 500 0 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015

More information

How the Internet Works

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

More information

Advanced HTML Scripting WebGUI Users Conference

Advanced HTML Scripting WebGUI Users Conference Advanced HTML Scripting 2004 WebGUI Users Conference XHTML where did that x come from? XHTML =? Extensible Hypertext Markup Language Combination of HTML and XML More strict than HTML Things to Remember

More information

CIS52N Martha Raup, 11/30/09. Lab 3: Problem 1: (demographics) a. A list of all records sorted by country name

CIS52N Martha Raup, 11/30/09. Lab 3: Problem 1: (demographics) a. A list of all records sorted by country name CIS52N Martha Raup, 11/30/09 Lab 3: Problem 1: (demographics) a. A list of all records sorted by country name b. The country with the highest population c. The country with the lowest population d. Countries

More information

Rootrainer Trees, ideal for bonsai

Rootrainer Trees, ideal for bonsai 1 h1 { 2 font-family: Arial, Helvetica, sans-serif; 3 font-size: 36pt; 4 font-weight: bold; 5 color: #000066; 6 text-align: center; 7 } 8 h2 { 9 font-family: "Times New Roman", Times, serif; 10 font-size:

More information

Using JavaScript in a compatible way

Using JavaScript in a compatible way Draft: javascript20020518.wpd Printed on May 18, 2002 (3:24pm) Using JavaScript in a compatible way Rafael Palacios* *Universidad Pontificia Comillas, Madrid, Spain Abstract Many web pages use JavaScript

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

Tables *Note: Nothing in Volcano!*

Tables *Note: Nothing in Volcano!* Tables *Note: Nothing in Volcano!* 016 1 Learning Objectives After this lesson you will be able to Design a web page table with rows and columns of text in a grid display Write the HTML for integrated

More information

Web Publishing Intermediate 2

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

More information

Introduction to HTML5

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

More information

LA TROBE UNIVERSITY SEMESTER ONE EXAMINATION PERIOD CAMPUS AW BE BU MI SH ALLOWABLE MATERIALS

LA TROBE UNIVERSITY SEMESTER ONE EXAMINATION PERIOD CAMPUS AW BE BU MI SH ALLOWABLE MATERIALS LIBRARY USE LA TROBE UNIVERSITY SEMESTER ONE EXAMINATION PERIOD 2013 Student ID: Seat Number: Unit Code: CSE2WD Paper No: 1 Unit Name: Paper Name: Reading Time: Writing Time: Web Development Final 15 minutes

More information

JSP files for OBAAS1.1:

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

More information

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

CHANGE is not a four-letter word. Kimberly

CHANGE is not a four-letter word. Kimberly CHANGE is not a four-letter word Kimberly Blessing @obiwankimberly Diffusion of Innovations Everett Rogers (1962) Welcome to AOL.COM

More information

state View; else if (mesg == "Overview") { state Overview; state_exit(){}

state View; else if (mesg == Overview) { state Overview; state_exit(){} list labels = ["Take", "Overview", "View"]; key httpid = NULL_KEY; integer mychannel = -17325; // Set this to something unique for yourself to avoid crosstalk key who; key textureblank = "8dcd4a48-2d37-4909-9f78-f7a9eb4ef903";

More information

USER DOCUMENTATION CUSTOM SERVICES

USER DOCUMENTATION CUSTOM SERVICES USER DOCUMENTATION CUSTOM SERVICES Ex Libris Ltd., 2004 Table of Contents INTRODUCTION... 3 CREATING CUSTOM SERVICES... 4 CUSTOM SERVICES AND THE GUI CLIENT... 5 CUSTOM SERVICES AND THE WEB... 9 Ex Libris

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

JavaScript (5A) JavaScript

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

More information

1 of 5 5/28/ :07 PM

1 of 5 5/28/ :07 PM 1 of 5 5/28/2011 11:07 PM mobi

More information

Azblink API for Sending XMPP Messages via HTTP POST

Azblink API for Sending XMPP Messages via HTTP POST Azblink API for Sending XMPP Messages via HTTP POST Abstract: This document is to describe the API of Azblink SBC for sending XMPP messages via HTTP POST. This is intended for the systems or the devices

More information

Basics of Page Format

Basics of Page Format Basics of Page Format HTML Structural Tags Certain HTML tags provide the structure of the HTML document. These include the tag, the tag, the tag, and the tag. As soon as a

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

8 Basic Skinning. Introduction. In this chapter we will cover the following topics:

8 Basic Skinning. Introduction. In this chapter we will cover the following topics: 8 Basic Skinning In this chapter we will cover the following topics: Downloading and installing a skin Creating a simple HTML skin Creating a simple ASCX skin Deploying your skins and containers Exploring

More information

: Internet Concepts and Web design (Lab Course)

: Internet Concepts and Web design (Lab Course) Course Code Course Title Assignment Number : MCSL-016 : Internet Concepts and Web design (Lab Course) : MCA(1)/L016/Assign/2013 Maximum Marks : 100 Weightage : 25% Last Dates for Submission : 31st October,

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

TRAVEL AND TOURISM MANAGEMENT SYSTEM TABLE OF CONTENT. Acknowledgement 3. Declaration 4

TRAVEL AND TOURISM MANAGEMENT SYSTEM TABLE OF CONTENT. Acknowledgement 3. Declaration 4 TRAVEL AND TOURISM MANAGEMENT SYSTEM TABLE OF CONTENT Content Page No. Acknowledgement 3 Declaration 4 1. Introduction and objective of the project 1.1 Introduction 7 1.2 Advantage 8 1.3 Existing Sysytem

More information

This project analyzes and redesigns part of the information system for Rainbow Soccer

This project analyzes and redesigns part of the information system for Rainbow Soccer David J. Smithwick Jr. The Design and Implementation of a Web-Accessible Database to Integrate with the Existing Information System of Rainbow Soccer, Ltd. A Master s Paper for the M.S. in I.S. degree.

More information

JSP files for OBAAS1.2:

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

More information

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

ajax1.html 1/2 lectures/7/src/ ajax1.html 2/2 lectures/7/src/

ajax1.html 1/2 lectures/7/src/ ajax1.html 2/2 lectures/7/src/ ajax1.html 1/2 3: ajax1.html 5: Gets stock quote from quote1.php via Ajax, displaying result with alert(). 6: 7: David J. Malan 8: Dan Armendariz 9: Computer Science E-75 10: Harvard Extension School 11:

More information

Header. Report Section. Footer

Header. Report Section. Footer Scan&Solve Cheat Sheet for Modifying Report Format Scan&Solve uses template files to construct the web-ready reports when the [Report ] button is clicked in the View tab. These template files, located

More information

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

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

More information

Dr. S. Sreekanth, Ph.D Professor, Dept of CSE, SITAMS, Chittoor (Dist.), Andhra Pradesh, India

Dr. S. Sreekanth, Ph.D Professor, Dept of CSE, SITAMS, Chittoor (Dist.), Andhra Pradesh, India Volume 6, Issue 5, May 2016 ISSN: 2277 128X International Journal of Advanced Research in Computer Science and Software Engineering Research Paper Available online at: www.ijarcsse.com Student Assessment

More information

HTML Overview. With an emphasis on XHTML

HTML Overview. With an emphasis on XHTML HTML Overview With an emphasis on XHTML What is HTML? Stands for HyperText Markup Language A client-side technology (i.e. runs on a user s computer) HTML has a specific set of tags that allow: the structure

More information

First, create a web page with a submit button on it (remember from creating forms in html?):

First, create a web page with a submit button on it (remember from creating forms in html?): Changing Style So far we have only done a little with changing the style of a web page. JavaScript lets us do that as well. We can call a function that allows us to change the style of one or many elements

More information

How to Make a Contact Us PAGE in Dreamweaver

How to Make a Contact Us PAGE in Dreamweaver We found a great website on the net called http://dreamweaverspot.com and we have basically followed their tutorial for creating Contact Forms. We also checked out a few other tutorials we found by Googling,

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

LAMPIRAN A: LISTING PROGRAM

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

More information

HTML HTML. Chris Seddon CRS Enterprises Ltd 1

HTML HTML. Chris Seddon CRS Enterprises Ltd 1 Chris Seddon seddon-software@keme.co.uk 2000-12 CRS Enterprises Ltd 1 2000-12 CRS Enterprises Ltd 2 Reference Sites W3C W3C w3schools DevGuru Aptana GotAPI Dog http://www.w3.org/ http://www.w3schools.com

More information

Content Designing using HTML(Frames and Forms)

Content Designing using HTML(Frames and Forms) 1. Frameset An HTML document that describes frame layout (called a frame-set document) has a different makeup than an HTML document without frames. A standard document has one HEAD section and one BODY.

More information

Web Publishing Basics I

Web Publishing Basics I Web Publishing Basics I Jeff Pankin Information Services and Technology Contents Course Objectives... 2 Creating a Web Page with HTML... 3 What is Dreamweaver?... 3 What is HTML?... 3 What are the basic

More information

Chapter 1. Introduction to web development and PHP. 2010, Mike Murach & Associates, Inc. Murach's PHP and MySQL, C1

Chapter 1. Introduction to web development and PHP. 2010, Mike Murach & Associates, Inc. Murach's PHP and MySQL, C1 1 Chapter 1 Introduction to web development and PHP 2 Applied Objectives Use the XAMPP control panel to start or stop Apache or MySQL when it is running on your own computer. Deploy a PHP application on

More information

HTML crashcourse. general structure tables forms textfield textarea selectbox listbox hidden field checkbox radiobuttons submit button

HTML crashcourse. general structure tables forms textfield textarea selectbox listbox hidden field checkbox radiobuttons submit button HTML crashcourse general structure tables forms textfield textarea selectbox listbox hidden field checkbox radiobuttons submit button Andreas Schmidt HTML Crash-Kurs 1/10 general structure

More information

Caso de Estudio: Parte II. Diseño e implementación de. Integración de Sistemas. aplicaciones Web con.net

Caso de Estudio: Parte II. Diseño e implementación de. Integración de Sistemas. aplicaciones Web con.net Caso de Estudio: Diseño e Implementación de la Capa Web de MiniBank Integración de Sistemas Parte II Diseño e implementación de Parte II. Diseño e implementación de aplicaciones Web con.net Introducción

More information

COM1004 Web and Internet Technology

COM1004 Web and Internet Technology COM1004 Web and Internet Technology When a user submits a web form, how do we save the information to a database? How do we retrieve that data later? ID NAME EMAIL MESSAGE TIMESTAMP 1 Mike mike@dcs Hi

More information

ECC HTML CUSTOM PAGES CREATION

ECC HTML CUSTOM PAGES CREATION ECC HTML CUSTOM PAGES CREATION Schneider Electric- Square D Company Power Management Operation About This Document: The PowerLogic Ethernet Communication Card (ECC) allows power users to view real time,

More information