HTML Forms & PHP. Database Systems CSCI Dr. Tom Hicks Computer Science Department

Size: px
Start display at page:

Download "HTML Forms & PHP. Database Systems CSCI Dr. Tom Hicks Computer Science Department"

Transcription

1 HTML Forms & PHP Database Systems CSCI-3343 Dr. Tom Hicks Computer Science Department

2 Create Page Faculty-Add.php

3 AddFaculty Page Create page Faculty-Add.php It will be blank for the moment. We are going to use this page as our data collection page. <HTML> <HEAD><TITLE>Faculty Add </TITLE></HEAD> <BODY BGCOLOR = Navy LINK = Yellow VLINK ="#FFFF00" ALINK = Yellow TEXT = White> <CENTER><H1> ADD FACULTY </H1> <H3> Written By Dr. Tom Hicks </H3></CENTER> </BODY></HTML>

4 AddFaculty Page

5 FORM Element

6 FORM HTML forms are used to pass data to a server. An HTML form can contain input elements like text fields, checkboxes, radio-buttons, submit buttons and more. A form can also contain select lists, textarea, fieldset, legend, and label elements. The form element begins with <FORM> and ends with </FORM> Add the form to the body of the Faculty-Add.php <FORM> </FORM>.

7 GUI s Helpful

8 GUI s Helpful

9 GUI s Helpful

10 FORM METHOD = GET METHOD = GET Cacheable Does not automatically re-request info Should be used only if form is Indepotent Browser will reprocess with no warning Would Re-Bill a credit card with no browser warning May require POST for Indepotent if URL is long For getting/retrieving data only! <FORM METHOD = "GET" > </FORM>.

11 FORM METHOD = POST METHOD = POST Browser will generally reprocess with a warning Don t want credit card rebilled twice I always use with database queries I always want the most recent data Many folks simply use POST all of the time <FORM METHOD = "POST" > </FORM>.

12 FORM METHOD = GET METHOD = GET Get can also expose more of the sensitive information because it is appended to the URL. (See Below!) Security Risk! <FORM METHOD = GET" > I USE POST! </FORM>.

13 FORM ACTION = AddFaculty-Confirmation.php ACTION = Form Process Page URL Relative or Absolute Suppose the data collection page Faculty-Add.php The contents of the form will often be sent to another page for processing; i.e. adding this faculty member record to the database. The data collection page & the process page can be one and the same, but this is often a bit more complex and limiting. I would call the page to add the confirmation page AddFaculty-Confirmation.php It is not the purpose of this presentation to add the record to the database; we are only examining the HTML transfer of information. <FORM METHOD = "POST" ACTION = "AddFaculty-Confirmation.php"> </FORM>.

14 Create Page AddFaculty-Confirmation.php

15 AddFaculty-Confirmation Page Create page AddFaculty-Confirmation.php It will be blank for the moment. We are going to use this page as our data collection page. <HTML> <HEAD><TITLE>Add Faculty Confirmation</TITLE></HEAD> <BODY BGCOLOR = "#800000" LINK = Yellow VLINK ="#FFFF00" ALINK = Yellow TEXT = White> <CENTER><H1> ADD FACULTY CONFIRMATION </H1> <H3> Written By Dr. Tom Hicks </H3></CENTER> </BODY></HTML>

16 AddFaculty-Confirmation Page

17 Form Submission

18 FORM ID = form1 NAME = form1 NAME = form1 ID = form1 HTML offers the ability to logically navigate to named regions on the page. You might choose to automatically move the cursor into one of the form textboxes when a form is loaded you will need the NAME. <FORM METHOD = "POST" ACTION = "Login-Confirmation.php " ID = "form1" NAME = "form1"> </FORM>.

19 INPUT TYPE = SUBMIT NAME = form1 ID = form1 HTML offers the ability to logically navigate to named regions on the page. You might choose to automatically move the cursor into one of the form textboxes when a form is loaded you will need the NAME. <FORM METHOD = "POST" ACTION = "Login-Confirmation.php " ID = "form1" NAME = "form1"> <INPUT TYPE ="submit" VALUE ="Add Faculty Member Now!"> </FORM>.

20 Push The Submit Button

21 Confirmation Page The confirmation page may be a relative address as seen above. The confirmation page may be absolute as shown to google below. <FORM METHOD="POST" ACTION=" <INPUT TYPE ="submit" VALUE = "Go To Google Now"> </form>

22 Text Input Element & PHP Form Processing

23 INPUT TYPE = Text The INPUT element is used for collecting data entered by keyboard. The data may be alpha The data may be numeric Add the code below to your form on Faculty-Add.php First <INPUT NAME = "First" TYPE = "text" SIZE = "15"><P>.

24 Recover Data Passed To Confirmation Page Data processed in the confirmation can be recovered from &_POST First < INPUT NAME = "First" TYPE = "text" SIZE = "15"><P> Add the following block of code to the confirmation page. <HR COLOR=PEARL SIZE=6 NOSHADE /> <?PHP $First = $_POST['First']; print "First = ". $First. "<BR>";?>

25 INPUT TYPE = Text The INPUT element is used for collecting data entered by keyboard. The data may be alpha The data may be numeric Add the code below to your form on Faculty-Add.php Age <INPUT NAME = "Age" TYPE = "text" SIZE = " 2"><P>.

26 Recover Data Passed To Confirmation Page Data processed in the confirmation can be recovered from &_POST First < INPUT NAME = "First" TYPE = "text" SIZE = "15"><P> Add the following block of code to the confirmation page. <HR COLOR=PEARL SIZE=6 NOSHADE /> <?PHP $Age = $_POST['Age']; print "Age = ". $Age. "<BR>";?>

27 Checkbox Input Element & PHP Form Processing

28 INPUT TYPE = Checkbox The checkbox can be a binary type selection Add the code below to your form on Faculty-Add.php Tenured <INPUT NAME ="Tenured" TYPE ="checkbox"><p>.

29 Recover Data Passed To Confirmation Page Data processed in the confirmation can be recovered from &_POST Tenured <INPUT NAME ="Tenured" TYPE ="checkbox"><p> Add the following block of code to the confirmation page. if(empty($_post['tenured'])) $Tenured = "false"; else $Tenured = "true"; print "Tenured = ". $Tenured. "<BR>";

30 INPUT TYPE = Checkbox There may be more than two responses associated with a checkbox input. Add the code below to your form on Faculty-Add.php Department <INPUT TYPE = "checkbox" NAME = "Department" VALUE = "Computer Science"> Computer Science <INPUT TYPE = "checkbox" NAME = "Department" VALUE = "Mathematics" > Mathematics <P>

31 Recover Data Passed To Confirmation Page Data processed in the confirmation can be recovered from &_POST Add the following block of code to the confirmation page. There may be a dozen, or more, choices if necessary. if(empty($_post['department'])) $Department = "None"; else $Department = $_POST['Department']; print "Department = ". $Department. "<BR>";

32 Checkbox Input Element & PHP Form Processing

33 INPUT TYPE = Radio The checkbox can be unary, binary, or more. Add the code below to your form on Faculty-Add.php Rank <INPUT TYPE = "radio" NAME = "Rank" VALUE = "Full Professor" > Full Professor <INPUT TYPE = "radio" NAME = "Rank" VALUE = "Associate Professor" > Associate Professor <INPUT TYPE = "radio" NAME = "Rank" VALUE = "Assistant Professor" > Assistant Professor <P>

34 Recover Data Passed To Confirmation Page Data processed in the confirmation can be recovered from &_POST Add the following block of code to the confirmation page. if(empty($_post['rank'])) $Rank = "None"; else $Rank = $_POST['Rank']; print "Rank = ". $Rank. "<BR>";

35 Select/Combobox Element & PHP Form Processing

36 SELECT Combobox The select combobox is a dropdown control that can be binary, or more. Add the code below to your form on Faculty-Add.php Gender <select name="gender"> <option value="">select Gender</option> <option value="male">male</option> <option value="female">female</option> </select> <P>

37 Recover Data Passed To Confirmation Page Data processed in the confirmation can be recovered from &_POST Add the following block of code to the confirmation page. $Gender = $_POST['Gender']; print "Gender = ". $Gender. "<BR>";

38 Hidden Element & PHP Form Processing

39 INPUT TYPE = Hidden Nothing appears on the page? Add the code below to your form on Faculty-Add.php <INPUT NAME = "Secret" TYPE = "hidden" VALUE="Computer Science Rocks">

40 Recover Data Passed To Confirmation Page Data processed in the confirmation can be recovered from &_POST Add the following block of code to the confirmation page. $Gender = $_POST['Secret']; print "Secret = ". $Secret. "<BR>";

41 Textarea (Multiline) Element & PHP Form Processing

42 SELECT Combobox The select combobox is a dropdown control that can be binary, or more. Add the code below to your form on Faculty-Add.php Comments <BR> <TEXTAREA NAME = "Comments" COLS = "70" ROWS = "7"> Enter your comments here... </TEXTAREA><P>

43 Data To Be Passed!

44 Recover Data Passed To Confirmation Page Data processed in the confirmation can be recovered from &_POST Add the following block of code to the confirmation page. $Comments = $_POST['Comments']; print "Comments = <BR>"; print $Comments. "<P>";

45 PHP Redirect

46 Logical Redirect Every Scripting Language needs some way to logically redirect files to another web page. Suppose we wished to load page localhost/php/displayusers.php if the faculty member is in the Mathematics department. Add the following code to AddFaculty-Confirmation.php in order to make that happen. if ($Department = "Mathematics") header("location:

47 Redirect function I use this redirection on many pages I often abstract it to a function, called Redirect: Return to page Connection.php, used in other PHP Database tutorials. <?php /*============================================================= === Connect To MySQL Database === =============================================================*/ $server ="localhost"; $username="root"; $password="trinity"; $database="libraryth"; $conn = new mysqli(); $conn->connect($server, $username, $password, $database); function Redirect ($URL) { header("location: $URL); }?>

48 Evoking Redirect function Connection.php, used in other PHP Database tutorials. function Redirect ($URL) { header("location: $URL); } Add the following code to AddFaculty-Confirmation.php in order to make that happen. if ($Department = "Mathematics") Redirect("localhost/php/DisplayUsers.php");

49 Disclaimer

50 Recover Data Passed To Confirmation Page None of the forms in this tutorial illustrate how user-friendly forms should be generated. See the tutorial on good form design.

51 Database Systems CSCI 3343 Dr. Thomas E. Hicks Computer Science Department Trinity University 51

HTML Forms & PHP & MySQL Database. Database Systems CSCI-3343 Dr. Tom Hicks Computer Science Department

HTML Forms & PHP & MySQL Database. Database Systems CSCI-3343 Dr. Tom Hicks Computer Science Department HTML Forms & PHP & MySQL Database Database Systems CSCI-3343 Dr. Tom Hicks Computer Science Department 1 Import Database University1 with MySQL Workbench 2 It Should Have 3 Tables 3 Create Folders 4 Create

More information

PHP & MySQL Database. Database Systems CSCI Dr. Tom Hicks Computer Science Department

PHP & MySQL Database. Database Systems CSCI Dr. Tom Hicks Computer Science Department PHP & MySQL Database Database Systems CSCI-3343 Dr. Tom Hicks Computer Science Department 1 WWW Organization It Is A Good Idea To Create A Folder For Each Web Page Place Most Items, On Page, In That Folder!

More information

1. Begin by selecting [Content] > [Add Content] > [Webform] in the administrative toolbar. A new Webform page should appear.

1. Begin by selecting [Content] > [Add Content] > [Webform] in the administrative toolbar. A new Webform page should appear. Creating a Webform 1. Begin by selecting [Content] > [Add Content] > [Webform] in the administrative toolbar. A new Webform page should appear. 2. Enter the title of the webform you would like to create

More information

PHPRad. PHPRad At a Glance. This tutorial will show you basic functionalities in PHPRad and

PHPRad. PHPRad At a Glance. This tutorial will show you basic functionalities in PHPRad and PHPRad PHPRad At a Glance. This tutorial will show you basic functionalities in PHPRad and Getting Started Creating New Project To create new Project. Just click on the button. Fill In Project properties

More information

Development Technologies. Agenda: phpmyadmin 2/20/2016. phpmyadmin MySQLi. Before you can put your data into a table, that table should exist.

Development Technologies. Agenda: phpmyadmin 2/20/2016. phpmyadmin MySQLi. Before you can put your data into a table, that table should exist. CIT 736: Internet and Web Development Technologies Lecture 10 Dr. Lupiana, DM FCIM, Institute of Finance Management Semester 1, 2016 Agenda: phpmyadmin MySQLi phpmyadmin Before you can put your data into

More information

HTML Forms. By Jaroslav Mohapl

HTML Forms. By Jaroslav Mohapl HTML Forms By Jaroslav Mohapl Abstract How to write an HTML form, create control buttons, a text input and a text area. How to input data from a list of items, a drop down list, and a list box. Simply

More information

Database Connectivity using PHP Some Points to Remember:

Database Connectivity using PHP Some Points to Remember: Database Connectivity using PHP Some Points to Remember: 1. PHP has a boolean datatype which can have 2 values: true or false. However, in PHP, the number 0 (zero) is also considered as equivalent to False.

More information

Web Application Development (WAD) V th Sem BBAITM (Unit 4) By: Binit Patel

Web Application Development (WAD) V th Sem BBAITM (Unit 4) By: Binit Patel Web Application Development (WAD) V th Sem BBAITM (Unit 4) By: Binit Patel Working with Forms: A very popular way to make a web site interactive is using HTML based forms by the site. Using HTML forms,

More information

COMS 359: Interactive Media

COMS 359: Interactive Media COMS 359: Interactive Media Agenda Project #3 Review Forms (con t) CGI Validation Design Preview Project #3 report Who is your client? What is the project? Project Three action= http://...cgi method=

More information

Web Site Design and Development Lecture 23. CS 0134 Fall 2018 Tues and Thurs 1:00 2:15PM

Web Site Design and Development Lecture 23. CS 0134 Fall 2018 Tues and Thurs 1:00 2:15PM Web Site Design and Development Lecture 23 CS 0134 Fall 2018 Tues and Thurs 1:00 2:15PM List box The element shows a list of options in a scroll-able box when size is

More information

Faculty Web Page Management System. Help Getting Started

Faculty Web Page Management System. Help Getting Started Faculty Web Page Management System Help Getting Started 2 Table of Contents Faculty Web Page Management System...1 Help Getting Started...1 Table of Contents...2 Manage My Personal Information...3 Creating

More information

CGI Programming. What is "CGI"?

CGI Programming. What is CGI? CGI Programming What is "CGI"? Common Gateway Interface A means of running an executable program via the Web. CGI is not a Perl-specific concept. Almost any language can produce CGI programs even C++ (gasp!!)

More information

User Manual Appointment System

User Manual Appointment System User Manual Appointment System Page 1 of 17 1.0 TABLE OF CONTENTS TABLE OF CONTENTS... 2 System Overview... 3 Menu Options... 3 Application Access... 3 Patient Registration... 6 Schedule Appointment...

More information

Perch Documentation. U of M - Department of Computer Science. Written as a COMP 3040 Assignment by Cameron McKay, Marko Kalic, Riley Draward

Perch Documentation. U of M - Department of Computer Science. Written as a COMP 3040 Assignment by Cameron McKay, Marko Kalic, Riley Draward Perch Documentation U of M - Department of Computer Science Written as a COMP 3040 Assignment by Cameron McKay, Marko Kalic, Riley Draward 1 TABLE OF CONTENTS Introduction to Perch History of Perch ---------------------------------------------

More information

The connection has timed out

The connection has timed out 1 of 7 2/17/2018, 7:46 AM Mukesh Chapagain Blog PHP Magento jquery SQL Wordpress Joomla Programming & Tutorial HOME ABOUT CONTACT ADVERTISE ARCHIVES CATEGORIES MAGENTO Home» PHP PHP: CRUD (Add, Edit, Delete,

More information

Web Focused Programming With PHP

Web Focused Programming With PHP Web Focused Programming With PHP May 20 2014 Thomas Beebe Advanced DataTools Corp (tom@advancedatatools.com) Tom Beebe Tom is a Senior Database Consultant and has been with Advanced DataTools for over

More information

Web Programming. Based on Notes by D. Hollinger Also Java Network Programming and Distributed Computing, Chs.. 9,10 Also Online Java Tutorial, Sun.

Web Programming. Based on Notes by D. Hollinger Also Java Network Programming and Distributed Computing, Chs.. 9,10 Also Online Java Tutorial, Sun. Web Programming Based on Notes by D. Hollinger Also Java Network Programming and Distributed Computing, Chs.. 9,10 Also Online Java Tutorial, Sun. 1 World-Wide Wide Web (Tim Berners-Lee & Cailliau 92)

More information

Testing Documentation

Testing Documentation Testing Documentation Create-A-Page Group 9: John Campbell, Matthew Currier, Dan Martin 5/1/2009 This document defines the methods for testing Create-A-Page, as well as the results of those tests and the

More information

JavaScript Functions, Objects and Array

JavaScript Functions, Objects and Array JavaScript Functions, Objects and Array Defining a Function A definition starts with the word function. A name follows that must start with a letter or underscore, followed by any number of letters, digits,

More information

Webshop Plus! v Pablo Software Solutions DB Technosystems

Webshop Plus! v Pablo Software Solutions DB Technosystems Webshop Plus! v.2.0 2009 Pablo Software Solutions http://www.wysiwygwebbuilder.com 2009 DB Technosystems http://www.dbtechnosystems.com Webshos Plus! V.2. is an evolution of the original webshop script

More information

B. V. Patel Institute of BMC & IT 2014

B. V. Patel Institute of BMC & IT 2014 Unit 1: Introduction Short Questions: 1. What are the rules for writing PHP code block? 2. Explain comments in your program. What is the purpose of comments in your program. 3. How to declare and use constants

More information

Survey Creation Workflow These are the high level steps that are followed to successfully create and deploy a new survey:

Survey Creation Workflow These are the high level steps that are followed to successfully create and deploy a new survey: Overview of Survey Administration The first thing you see when you open up your browser to the Ultimate Survey Software is the Login Page. You will find that you see three icons at the top of the page,

More information

Locate your Advanced Tools and Applications

Locate your Advanced Tools and Applications MySQL Manager is a web based MySQL client that allows you to create and manipulate a maximum of two MySQL databases. MySQL Manager is designed for advanced users.. 1 Contents Locate your Advanced Tools

More information

Creating Forms in SOCS

Creating Forms in SOCS Training Creating Forms in SOCS Use the Form option on the Advanced Tool Bar to create a form to post to your SOCS site. The form allows visitors to complete the information online. The information gathered

More information

Checklist for Testing of Web Application

Checklist for Testing of Web Application Checklist for Testing of Web Application Web Testing in simple terms is checking your web application for potential bugs before its made live or before code is moved into the production environment. During

More information

The Electronic Voting System - EVS

The Electronic Voting System - EVS The Electronic Voting System - EVS The electronic voting system is based on the MSU surveys application. Its primary purpose is to allow the MSU community to vote on a variety of issues, membership or

More information

Networks and Web for Health Informatics (HINF 6220) Tutorial 13 : PHP 29 Oct 2015

Networks and Web for Health Informatics (HINF 6220) Tutorial 13 : PHP 29 Oct 2015 Networks and Web for Health Informatics (HINF 6220) Tutorial 13 : PHP 29 Oct 2015 PHP Arrays o Arrays are single variables that store multiple values at the same time! o Consider having a list of values

More information

ITEC447 Web Projects CHAPTER 9 FORMS 1

ITEC447 Web Projects CHAPTER 9 FORMS 1 ITEC447 Web Projects CHAPTER 9 FORMS 1 Getting Interactive with Forms The last few years have seen the emergence of the interactive web or Web 2.0, as people like to call it. The interactive web is an

More information

Connecting VirtueMart To PayPal (Live)

Connecting VirtueMart To PayPal (Live) Connecting VirtueMart To PayPal (Live) After testing is complete in the PayPal Sandbox and you are satisfied all is well, then its time to disconnect VirtueMart from the PayPal Sandbox and connect Virtuemart

More information

FreeRangeRemote Access

FreeRangeRemote Access City of Westminster User Guide to FreeRangeRemote Access For Android tablets using the native browser (Chrome) https://freerange.cityofwestminster.us IMPORTANT! Some versions of Chrome on Android are unable

More information

Outline. Introducing Form. Introducing Forms 2/21/2013 INTRODUCTION TO WEB DEVELOPMENT AND HTML

Outline. Introducing Form. Introducing Forms 2/21/2013 INTRODUCTION TO WEB DEVELOPMENT AND HTML Outline INTRODUCTION TO WEB DEVELOPMENT AND HTML Introducing Forms The element Focus Sending form data to the server Exercise Lecture 07: Forms - Spring 2013 Introducing Form Any form is declared

More information

About the Tutorial. Audience. Prerequisites. Copyright & Disclaimer. WordPress

About the Tutorial. Audience. Prerequisites. Copyright & Disclaimer. WordPress About the Tutorial WordPress is an open source Content Management System (CMS), which allows the users to build dynamic websites and blog. WordPress is the most popular blogging system on the web and allows

More information

Affinity Provider Portal Training Manual

Affinity Provider Portal Training Manual Training Manual Login This page enables a user to either login and/or register if he/she is not already a regstered user (ie. Providers and Staff users). The following are the functionalities which can

More information

CMPT 165 INTRODUCTION TO THE INTERNET AND THE WORLD WIDE WEB

CMPT 165 INTRODUCTION TO THE INTERNET AND THE WORLD WIDE WEB CMPT 165 INTRODUCTION TO THE INTERNET AND THE WORLD WIDE WEB Unit 8 HTML Forms and Basic CGI Slides based on course material SFU Icons their respective owners 1 Learning Objectives In this unit you will

More information

Web Design and Development ACS Chapter 13. Using Forms 11/27/2018 1

Web Design and Development ACS Chapter 13. Using Forms 11/27/2018 1 Web Design and Development ACS-1809 Chapter 13 Using Forms 11/27/2018 1 Chapter 13: Employing Forms Understand the concept and uses of forms in web pages Create a basic form Validate the form content 11/27/2018

More information

Intro To HTML & Web & Relational Queries Individual Assignment 30 Points

Intro To HTML & Web & Relational Queries Individual Assignment 30 Points If this lab is an Individual assignment, you must do all coded programs on your own. You may ask others for help on the language syntax, but you must organize and present your own logical solution to the

More information

Building Web Based Application using HTML

Building Web Based Application using HTML Introduction to Hypertext Building Web Based Application using HTML HTML: Hypertext Markup Language Hypertext links within and among Web documents connect one document to another Origins of HTML HTML is

More information

DR B.R.AMBEDKAR UNIVERSITY B.Sc.(Computer Science): III Year THEORY PAPER IV (Elective 4) PHP, MySQL and Apache

DR B.R.AMBEDKAR UNIVERSITY B.Sc.(Computer Science): III Year THEORY PAPER IV (Elective 4) PHP, MySQL and Apache DR B.R.AMBEDKAR UNIVERSITY B.Sc.(Computer Science): III Year THEORY PAPER IV (Elective 4) PHP, MySQL and Apache 90 hrs (3 hrs/ week) Unit-1 : Installing and Configuring MySQL, Apache and PHP 20 hrs Installing

More information

USING PERFORMANCE PRO A Multi-Appraiser s Quickstart Guide. HRperformancesolutions.net 4/2017 v. 3.9

USING PERFORMANCE PRO A Multi-Appraiser s Quickstart Guide. HRperformancesolutions.net 4/2017 v. 3.9 USING PERFORMANCE PRO A Multi-Appraiser s Quickstart Guide HRperformancesolutions.net 4/2017 v. 3.9 Multi-Appraiser Quickstart Guide For companies with employees assigned to perform multi-appraiser evaluations,

More information

HTML Tables and Forms. Outline. Review. Review. Example Demo/ Walkthrough. CS 418/518 Web Programming Spring Tables to Display Data"

HTML Tables and Forms. Outline. Review. Review. Example Demo/ Walkthrough. CS 418/518 Web Programming Spring Tables to Display Data CS 418/518 Web Programming Spring 2014 HTML Tables and Forms Dr. Michele Weigle http://www.cs.odu.edu/~mweigle/cs418-s14/ Outline! Assigned Reading! Chapter 4 "Using Tables to Display Data"! Chapter 5

More information

ecommerce Features Ability to control the width and height of suggested items on viewitem page. Can now limit the field length on a PDF template.

ecommerce Features Ability to control the width and height of suggested items on viewitem page. Can now limit the field length on a PDF template. ASI Computer Systems announces a Major Release for ecommerce with the release of! Ability to control the width and height of suggested items on viewitem page. Added NPC/Skipjack as a payment processor

More information

Chapter 3 HTML Multimedia and Inputs

Chapter 3 HTML Multimedia and Inputs Sungkyunkwan University Chapter 3 HTML Multimedia and Inputs Prepared by D. T. Nguyen and H. Choo Web Programming Copyright 2000-2018 Networking Laboratory 1/45 Copyright 2000-2012 Networking Laboratory

More information

An Online Interactive Database Platform For Career Searching

An Online Interactive Database Platform For Career Searching 22 Int'l Conf. Information and Knowledge Engineering IKE'18 An Online Interactive Database Platform For Career Searching Brandon St. Amour Zizhong John Wang Department of Mathematics and Computer Science

More information

ABSOLUTE FORM PROCESSOR ADMINISTRATION OPTIONS

ABSOLUTE FORM PROCESSOR ADMINISTRATION OPTIONS ABSOLUTE FORM PROCESSOR ADMINISTRATION OPTIONS The Absolute Form Processor is very easy to use. In order to operate the system, you just need the menu at the top of the screen. There, you ll find all the

More information

Learn how to login to Sitefinity and what possible errors you can get if you do not have proper permissions.

Learn how to login to Sitefinity and what possible errors you can get if you do not have proper permissions. USER GUIDE This guide is intended for users of all levels of expertise. The guide describes in detail Sitefinity user interface - from logging to completing a project. Use it to learn how to create pages

More information

Dreamweaver: Web Forms

Dreamweaver: Web Forms Dreamweaver: Web Forms Introduction Web forms allow your users to type information into form fields on a web page and send it to you. Dreamweaver makes it easy to create them. This workshop is a follow-up

More information

GoLive will first ask you if your new site will be for one individual or a work group; select for a Single User, and click Next.

GoLive will first ask you if your new site will be for one individual or a work group; select for a Single User, and click Next. Getting Started From the Start menu, located the Adobe folder which should contain the Adobe GoLive 6.0 folder. Inside this folder, click Adobe GoLive 6.0. GoLive will open to its initial project selection

More information

Last &me: Javascript (forms and func&ons)

Last &me: Javascript (forms and func&ons) Let s debug some code together: hkp://www.clsp.jhu.edu/~anni/cs103/test_before.html hkp://www.clsp.jhu.edu/~anni/cs103/test_arer.html

More information

SelectSurveyASP Advanced User Manual

SelectSurveyASP Advanced User Manual SelectSurveyASP Advanced User Manual Creating Surveys 2 Designing Surveys 2 Templates 3 Libraries 4 Item Types 4 Scored Surveys 5 Page Conditions 5 Piping Answers 6 Previewing Surveys 7 Managing Surveys

More information

Chapter. Accessing MySQL Databases Using PHP

Chapter. Accessing MySQL Databases Using PHP Chapter 12 Accessing MySQL Databases Using PHP 150 Essential PHP fast Introduction In the previous chapter we considered how to create databases using MySQL. While this is useful, it does not enable us

More information

MyHVP Web Application User Guide

MyHVP Web Application User Guide MyHVP Web Application User Guide Table of Contents General Information page 2 System Access Logging in and out page 3 Welcome page 4 Take the Profile Selecting a user page 5 Entering a profile page 7 Editing

More information

Help Contents. Creating a Query - Synopsis

Help Contents. Creating a Query - Synopsis Help Contents Creating a Query - Synopsis...1 Phase 1: How to Begin a New Query...2 Phase 2: Choosing My Data Source...3 Phase 3: Choosing My Data Fields...4 Choosing My Data Fields - Selecting All Fields...4

More information

CSS Review. Objec(ves. Iden(fy the Errors. Fixed CSS. CSS Organiza(on

CSS Review. Objec(ves. Iden(fy the Errors. Fixed CSS. CSS Organiza(on Objec(ves CSS Review Discuss: Ø How Google Search Works Ø What Images You Can Use HTML Forms CSS Review Why CSS? What is the syntax of a CSS rule? What is the order of applying rules in the cascade? How

More information

CSCI 4000 Assignment 4

CSCI 4000 Assignment 4 Austin Peay State University, Tennessee Spring 2018 CSCI 4000: Advanced Web Development Dr. Leong Lee CSCI 4000 Assignment 4 Total estimated time for this assignment: 12 hours (if you are a good programmer)

More information

Web publishing training pack Level 3 Forms

Web publishing training pack Level 3 Forms Web publishing training pack Level 3 Forms Learning objective: Forms for submitting data - create and manage forms where data is saved in the Web Publishing System (e.g. questionnaire, registration, feedback).

More information

ICSE REGISTRATION MODULE V 2.0. User Guide for Schools

ICSE REGISTRATION MODULE V 2.0. User Guide for Schools ICSE REGISTRATION MODULE V 2.0 User Guide for Schools 1 TABLE OF CONTENTS INTRODUCTION 3 LOGIN 3 REGISTERING CANDIDATES FOR ICSE 4 INITIATING THE REGISTRATION PROCESS 4 RE-REGISTERING A DETAINED CANDIDATE

More information

Step 1. Final Grade Roster Submission. IT Department Printed on 05/21/2012 Page 1. Steps to Submit Grades. Step 1. Step 2. Step 3

Step 1. Final Grade Roster Submission. IT Department Printed on 05/21/2012 Page 1. Steps to Submit Grades. Step 1. Step 2. Step 3 /Notes 1. Log into CUNYfirst Enter your username and password AND Click on the Go button icon 2. From the Enterprise Menu, select the HR/Campus Solutions link IT Department Printed on 05/21/2012 Page 1

More information

CSE 154 LECTURE 8: FORMS

CSE 154 LECTURE 8: FORMS CSE 154 LECTURE 8: FORMS Web data most interesting web pages revolve around data examples: Google, IMDB, Digg, Facebook, YouTube, Rotten Tomatoes can take many formats: text, HTML, XML, multimedia many

More information

Chapter 1 FORMS. SYS-ED/ Computer Education Techniques, Inc.

Chapter 1 FORMS. SYS-ED/ Computer Education Techniques, Inc. Chapter 1 FORMS SYS-ED/ Computer Education Techniques, Inc. Objectives You will learn: How to use forms and the related form types. Controls for interacting with forms. Menus and presenting users with

More information

The Crypt Keeper Cemetery Software Online Version Tutorials To print this information, right-click on the contents and choose the 'Print' option.

The Crypt Keeper Cemetery Software Online Version Tutorials To print this information, right-click on the contents and choose the 'Print' option. The Crypt Keeper Cemetery Software Online Version Tutorials To print this information, right-click on the contents and choose the 'Print' option. Home Greetings! This tutorial series is to get you familiar

More information

A QUICK GUIDE TO PROGRAMMING FOR THE WEB. ssh (then type your UBIT password when prompted)

A QUICK GUIDE TO PROGRAMMING FOR THE WEB. ssh (then type your UBIT password when prompted) A QUICK GUIDE TO PROGRAMMING FOR THE WEB TO GET ACCESS TO THE SERVER: ssh Secure- Shell. A command- line program that allows you to log in to a server and access your files there as you would on your own

More information

DRACULA. CSM Turner Connor Taylor, Trevor Worth June 18th, 2015

DRACULA. CSM Turner Connor Taylor, Trevor Worth June 18th, 2015 DRACULA CSM Turner Connor Taylor, Trevor Worth June 18th, 2015 Acknowledgments Support for this work was provided by the National Science Foundation Award No. CMMI-1304383 and CMMI-1234859. Any opinions,

More information

Login: Quick Guide for Qualtrics May 2018 Training:

Login:   Quick Guide for Qualtrics May 2018 Training: Qualtrics Basics Creating a New Qualtrics Account Note: Anyone with a Purdue career account can create a Qualtrics account. 1. In a Web browser, navigate to purdue.qualtrics.com. 2. Enter your Purdue Career

More information

Jackson State University Department of Computer Science CSC / Advanced Information Security Spring 2013 Lab Project # 3

Jackson State University Department of Computer Science CSC / Advanced Information Security Spring 2013 Lab Project # 3 Jackson State University Department of Computer Science CSC 439-01/539-02 Advanced Information Security Spring 2013 Lab Project # 3 Use of CAPTCHA (Image Identification Strategy) to Prevent XSRF Attacks

More information

Lasell College s Moodle 3 Student User Guide. Access to Moodle

Lasell College s Moodle 3 Student User Guide. Access to Moodle Access to Moodle The first session of this document will show you how to access your Lasell Moodle course, how to login, and how to logout. 1. The homepage of Lasell Learning Management System Moodle is

More information

UNIVERSITY OF CALGARY Information Technologies WEBFORMS DRUPAL 7 WEB CONTENT MANAGEMENT

UNIVERSITY OF CALGARY Information Technologies WEBFORMS DRUPAL 7 WEB CONTENT MANAGEMENT UNIVERSITY OF CALGARY Information Technologies WEBFORMS DRUPAL 7 WEB CONTENT MANAGEMENT Table of Contents Creating a Webform First Steps... 1 Form Components... 2 Component Types.....4 Conditionals...

More information

Publish Joomla! Article

Publish Joomla! Article Enterprise Architect User Guide Series Publish Joomla! Article Author: Sparx Systems Date: 10/05/2018 Version: 1.0 CREATED WITH Table of Contents Publish Joomla! Article 3 Install Joomla! Locally 4 Set

More information

Form Overview. Form Processing. The Form Element. CMPT 165: Form Basics

Form Overview. Form Processing. The Form Element. CMPT 165: Form Basics Form Overview CMPT 165: Form Basics Tamara Smyth, tamaras@cs.sfu.ca School of Computing Science, Simon Fraser University October 26, 2011 A form is an HTML element that contains and organizes objects called

More information

Publish Joomla! Article

Publish Joomla! Article Enterprise Architect User Guide Series Publish Joomla! Article Sparx Systems Enterprise Architect supports publishing an entire model, or part of the model, in a local Joomla! Repository as Articles (HTML

More information

Categories In WordPress

Categories In WordPress Categories In WordPress Categories provide a helpful way to group related posts together, and to quickly inform readers what a group of posts are about. Categories also make it easier for people to find

More information

Step 1 - Go to Step 2 - Login to your account. Step 3 - Click Register for a Test. Step 4 - Read the Requirements

Step 1 - Go to   Step 2 - Login to your account. Step 3 - Click Register for a Test. Step 4 - Read the Requirements Step 1 - Go to www.texes.ets.org Go to www.texes.ets.org Click the register link found in the top navigation. Step 2 - Login to your account Enter your username and password and click login. If you do

More information

International SOS e-learning Training Hub User Guide

International SOS e-learning Training Hub User Guide International SOS e-learning Training Hub User Guide WELCOME TO THE INTERNATIONAL SOS TRAINING HUB.... 2 STEP 1. ACCESSING THE INTERNATIONAL SOS TRAINING HUB... 2 STEP 2. LOGGING INTO INTERNATIONAL SOS

More information

AETNA PRODUCER CERTIFICATION PORTAL

AETNA PRODUCER CERTIFICATION PORTAL 1/1/2012 AETNA PRODUCER CERTIFICATION PORTAL Administrative Reference Guide AETNA Producer Certification Portal Administrative Reference Guide Table of Contents Getting Started: Log In and User Registration...

More information

Blue Form Builder extension for Magento 2

Blue Form Builder extension for Magento 2 Blue Form Builder extension for Magento 2 User Guide Version 1.0 Table of Contents I) Introduction......5 II) General Configurations....6 1) General Settings.....7 2) ReCaptcha... 8 III) Manage Forms......

More information

Design and development of GUI for Mobile App with MS Phone SDK. Bridging Windows Mobile GUI with php mysql. Lab Manual (for Windows 7 OS)

Design and development of GUI for Mobile App with MS Phone SDK. Bridging Windows Mobile GUI with php mysql. Lab Manual (for Windows 7 OS) Design and development of GUI for Mobile App with MS Phone SDK. Bridging Windows Mobile GUI with php mysql Lab Manual (for Windows 7 OS) Required Software for Windows 7 1. MS Visual Studio 2010 or Higher(better

More information

Table of Contents III. Publish to Living Spaces

Table of Contents III. Publish to Living Spaces Salsify User Guide Table of Contents I. Login... 3 II. Create or Edit a Product... 4 A. Create a New Product... 4 B. Edit a Product... 6 C. Fill Out Product Details - Attributes... 6 D. Adding an Image...

More information

LimeSurvey User Guide to Creating Surveys

LimeSurvey User Guide to Creating Surveys LimeSurvey User Guide to Creating Surveys Created: October 7, 2016 Last updated: March 20, 2017 Contents Gaining access to LimeSurvey... 3 Change your LimeSurvey password... 3 Importing an existing survey

More information

SchoolDesk University

SchoolDesk University SchoolDesk University Forms, Surveys, and Polls Module 101 Guided Walk-through for the basic fields, terminology, and location of tools. What is the NEW SD7 Forms Module? The NEW SchoolDesk Forms Module,

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

Quick Start Guide. Table of Contents

Quick Start Guide. Table of Contents Quick Start Guide Table of Contents Account Registration... 2 Signup Request... 2 Account Activation... 4 Running FLOW-3D on POD... 9 Launching the GUI... 9 Running Simulations... 11 Collaborating with

More information

Instructional Technology & Technology Enhancement Center -itec Grade Center Tutorial for Faculty

Instructional Technology & Technology Enhancement Center -itec Grade Center Tutorial for Faculty Instructional Technology & Technology Enhancement Center -itec Grade Center Tutorial for Faculty Grade Center: Several changes have been made in new Grade Center including new icons. Note that grade center

More information

Faculty User Guide: Assessing Submissions. Faculty User Guide: Assessing Submissions

Faculty User Guide: Assessing Submissions. Faculty User Guide: Assessing Submissions Faculty User Guide: Assessing Submissions Table of Contents Faculty Guide to Course Assignments... 3 Complete an Assessment... 3 Assess with a Rubric... 8 Evaluate and Re-Attach Submitted Non-LiveText

More information

The address is:

The address is: M a n ti s U s e r G u i d e L o g i n p a g e The address is: http://discoverysupport.reply.it/mantis/login_page.php Just enter your username and password and hit the login button. There is also a Save

More information

How to Register and Manage Buyer Accounts for a Customer Organization on Version 5 April 2007

How to Register and Manage Buyer Accounts for a Customer Organization on   Version 5 April 2007 How to Register and Manage Buyer Accounts for a Customer Organization on www.corcraft.org Version 5 April 2007 1 How to Register and Manage Buyer Accounts for a Customer Organization on www.corcraft.org.

More information

Using PHP with MYSQL

Using PHP with MYSQL Using PHP with MYSQL PHP & MYSQL So far you've learned the theory behind relational databases and worked directly with MySQL through the mysql command-line tool. Now it's time to get your PHP scripts talking

More information

User Guide. Form Builder. Extension Version User Guide Version Magento Editions Compatibility. Community - 2.2

User Guide. Form Builder. Extension Version User Guide Version Magento Editions Compatibility. Community - 2.2 User Guide Form Builder Extension Version - 1.1.3 User Guide Version - 1.1.3 Magento Editions Compatibility Community - 2.2 1 Content Form Builder V-1.1.3 Introduction Installation Usage Admin General

More information

Building a Web-based Health Promotion Database

Building a Web-based Health Promotion Database 6 th International Conference on Applied Informatics Eger, Hungary, January 27 31, 2004. Building a Web-based Health Promotion Database Ádám Rutkovszky University of Debrecen, Faculty of Economics Department

More information

Protect My Ministry Integrated Background Checks for Church Community Builder

Protect My Ministry Integrated Background Checks for Church Community Builder Protect My Ministry Integrated Background Checks for Church Community Builder Integration and User Guide Page 1 Introduction Background Check functionality through Protect My Ministry has been integrated

More information

All Applications Release Bulletin January 2010

All Applications Release Bulletin January 2010 All Applications Release Bulletin January 2010 In this bulletin... Online Enrollment: HTML Forms for Contracts 2 System Administration: MBP Online User Accounts 11 About Release 91_6 This release includes

More information

Admin Guide Hosted Applications

Admin Guide Hosted Applications Admin Guide Hosted Applications DOCUMENT REVISION DATE: December, 2010 Hosted Applications Admin Guide / Table of Contents Page 2 of 32 Table of Contents OVERVIEW... 3 1. ABOUT THE GUIDE... 3 1.1 AUDIENCE

More information

Book IX. Developing Applications Rapidly

Book IX. Developing Applications Rapidly Book IX Developing Applications Rapidly Contents at a Glance Chapter 1: Building Master and Detail Pages Chapter 2: Creating Search and Results Pages Chapter 3: Building Record Insert Pages Chapter 4:

More information

File Cabinet Manager

File Cabinet Manager Tool Box File Cabinet Manager Java File Cabinet Manager Password Protection Website Statistics Image Tool Image Tool - Resize Image Tool - Crop Image Tool - Transparent Form Processor Manager Form Processor

More information

Hello, and welcome to the Alexicomtech tutorial. I will show you step by step how to set up your interactive pages. Please feel free to ask questions

Hello, and welcome to the Alexicomtech tutorial. I will show you step by step how to set up your interactive pages. Please feel free to ask questions Hello, and welcome to the Alexicomtech tutorial. I will show you step by step how to set up your interactive pages. Please feel free to ask questions at any time. The first step is to open your internet

More information

icc.edu/library Films on Demand Guide for Faculty and Staff

icc.edu/library Films on Demand Guide for Faculty and Staff icc.edu/library Films on Demand Guide for Faculty and Staff Finding Films on Demand on the Library website: From the homepage of ICC Library website locate the Library Collections menu and click on Streaming

More information

Table of contents. Zip Processor 3.0 DMXzone.com

Table of contents. Zip Processor 3.0 DMXzone.com Table of contents About Zip Processor 3.0... 2 Features In Detail... 3 Before you begin... 6 Installing the extension... 6 The Basics: Automatically Zip an Uploaded File and Download it... 7 Introduction...

More information

!Accessibility Issues Found

!Accessibility Issues Found WCG2- accessibility report for http://www.messiah.edu 207-07-28!ccessibility Issues Found (6,838,98 unique issues affecting 7,45 pages) Overall accessibility compliance Done 53 issues done issues to fix/review

More information

Joomla Pre-install Tasks

Joomla Pre-install Tasks Joomla 3.0.1 Pre-install Tasks Before commencing the actual installation of Joomla CMS on your webhost you have to create: A MySQL database A MySQL user ( with password based access to the MySQL database

More information

ABOUT WEB TECHNOLOGY COURSE SCOPE:

ABOUT WEB TECHNOLOGY COURSE SCOPE: ABOUT WEB TECHNOLOGY COURSE SCOPE: The booming IT business across the globe, the web has become one in every of the foremost necessary suggests that of communication nowadays and websites are the lifelines

More information

Requirements Document

Requirements Document GROUP 9 Requirements Document Create-A-Page Matthew Currier, John Campbell, and Dan Martin 5/1/2009 This document is an outline of what was originally desired in the application in the Project Abstract,

More information