Dreamweaver Forms Overview. Forms – A Little Review Most user/webpage communication is one way, like this: Most user/webpage communication is one way,

Slides:



Advertisements
Similar presentations
Microsoft Expression Web-Illustrated Unit J: Creating Forms.
Advertisements

23-Aug-14 HTML/XHTML Forms. 2 What are forms? is just another kind of XHTML/HTML tag Forms are used to create (rather primitive) GUIs on Web pages Usually.
Session Variables Storing Session Variables on the Server.
1 Introduction to HTML II อุทัย เซี่ยงเจ็น สำนักวิชาเทคโนโลยีสารสนเทศ และการสื่อสาร มหาวิทยาลัยนเรศวร พะเยา.
CIS101 Introduction to Computing Week 08. Agenda Your questions JavaScript text Resume project HTML Project Six This week online Next class.
Creating a Form on a Web Page
Video, audio, embed, iframe, HTML Form
Forms cs105. More Interactive web-pages So far what we have seen was to present the information. (Ex: tables. Lists,….). But it is not enough. We want.
Forms Review. 2 Using Forms tag  Contains the form elements on a web page  Container tag tag  Configures a variety of form elements including text.
Computing Concepts Advanced HTML: Tables and Forms.
Macromedia Dreamweaver 4 Advanced Level Course. Add Rollovers Rollovers or mouseovers are possibly the most popular effects used in designing Web pages.
CGI Programming: Part 1. What is CGI? CGI = Common Gateway Interface Provides a standardized way for web browsers to: –Call programs on a server. –Pass.
Tutorial 6 Forms Section A - Working with Forms in JavaScript.
Forms. Form An HTML form is a section of a document containing normal content, special elements called controls (checkboxes, radio buttons, buttons, etc.),
ECA 228 Internet/Intranet Design I Forms. ECA 228 Internet/Intranet Design I Forms forms are a way for a user to communicate with you – text fields –
Lesson 8 Creating Forms with JavaScript
Chapter 9 Collecting Data with Forms. A form on a web page consists of form objects such as text boxes or radio buttons into which users type information.
MS3304: Week 4 PHP & HTML Forms. Overview HTML Forms elements refresher Sending data to a script via an HTML form –The post vs. get methods –Name value.
CO1552 Web Application Development HTML Forms. Websites can be made more interactive by providing facilities for users to provide data To get user entered.
Lesson 13: Building Web Forms Introduction to Adobe Dreamweaver CS6 Adobe Certified Associate: Web Communication using Adobe Dreamweaver CS6.
Dreamweaver MX. 2 Creating External Style Sheets-1 (p. 400) n A style is a group of formatting attributes identified by a single name. n An ________ style.
DAT602 Database Application Development Lecture 14 HTML.
© 2011 Delmar, Cengage Learning Chapter 9 Collecting Data with Forms.
© Cheltenham Computer Training 2001 Macromedia Dreamweaver 4 - Slide No 1 Macromedia Dreamweaver 4 Advanced Level Course.
HTML II. Factors to consider in designing a website. Organizing your files. HTML Tables. Unordered Lists. Ordered Lists. HTML Forms. Learning Objectives.
Suzanne J. Sultan Javascript Lecture 2. Suzanne J. Sultan function What is a function> Types of functions:  Function with no parameters  Function with.
Tutorial 7 Creating Forms. Objectives Session 7.1 – Create an HTML form – Insert fields for text – Add labels for form elements – Create radio buttons.
HTML Concepts and Techniques Fourth Edition Project 7 Creating a Form on a Web Page.
 Whether using paper forms or forms on the web, forms are used for gathering information. User enter information into designated areas, or fields. Forms.
Forms and Server Side Includes. What are Forms? Forms are used to get user input We’ve all used them before. For example, ever had to sign up for courses.
LOGO FORMs in HTML CHAPTER 5 Eastern Mediterranean University School of Computing and Technology Department of Information Technology ITEC229 Client-Side.
1 HTML Forms
1 © Netskills Quality Internet Training, University of Newcastle HTML Forms © Netskills, Quality Internet Training, University of Newcastle Netskills is.
HTML, Third Edition--Illustrated Introductory 1 HTML, Third Edition Illustrated Introductory Unit G Using Forms to Control Input.
Dreamweaver MX. 2 Overview of Templates n Forms enable you to collect data from ______. n A form contains ________ such as text fields, radio buttons,
HTML and FORMS.  A form is an area that can contain form elements.  Form elements are elements that allow the user to enter information (like text fields,
HTML FORMS GET/POST METHODS. HTML FORMS HTML Forms HTML forms are used to pass data to a server. A form can contain input elements like text fields, checkboxes,
CHAPTER 7 Form & PHP. Introduction All of the following examples in this section will require two web pages. The first page retrieves information posted.
XHTML & Forms. PHP and the WWW PHP and HTML forms – Forms are the main way users can interact with your PHP scrip Typical usage of the form tag in HTML.
PHP Form Introduction Getting User Information Text Input.
Week 12 Working with Forms Objectives Understand how forms work Understand form syntax Create input objects Build forms within tables Build and.
Creating Web Page Forms. Introducing Web Forms Web forms collect information from users Web forms include different control elements including: –Input.
Copyright © Terry Felke-Morris WEB DEVELOPMENT & DESIGN FOUNDATIONS WITH HTML5 7 TH EDITION Chapter 9 Key Concepts 1 Copyright © Terry Felke-Morris.
Microsoft FrontPage 2003 Illustrated Complete Creating a Form.
1 HTML Forms
HTML Form Widgets. Review: HTML Forms HTML forms are used to create web pages that accept user input Forms allow the user to communicate information back.
1 Building FORMS In When a visitor enters information into a web form displayed in a web browser and clicks the submit button, the information is sent.
Introduction To HTML Form Inputs Written By George Gimian.
Copyright © Terry Felke-Morris WEB DEVELOPMENT & DESIGN FOUNDATIONS WITH HTML5 Chapter 9 Key Concepts 1 Copyright © Terry Felke-Morris.
Starting BBEdit or Notepad and Opening the HTML File Start BBEdit or Notepad Select Open from the File Menu Open survey1.htm from the Public Folder.
1 HTML forms (cont.)
HTML FORMS The TEXT Object Presented By: Ankit Gupta.
Creating Web Page Forms COE 201- Computer Proficiency.
Basic Webpage Design HTML Forms. Objectives Learn how to use HTML to create a form. Explain the concept of forms Know the difference of GET and POST Discuss.
HTML Forms. A form is simply an area that can contain form fields. Form fields are objects that allow the visitor to enter information - for example text.
1 HTML forms (cont.)
Internet & World Wide Web How to Program, 5/e Copyright © Pearson, Inc All Rights Reserved.
Learning Aim C.  In this section we will look at how text, tables, forms and frames can be used in web pages.
HTML FORM. Form HTML Forms are used to select different kinds of user input. HTML forms are used to pass data to a server. A form can contain input elements.
HTML III (Forms) Robin Burke ECT 270. Outline Where we are in this class Web applications HTML Forms Break Forms lab.
HTML Structure II (Form) WEEK 2.2. Contents Table Form.
© 2004 D. J. Foreman T&F-1 CS205 Tables & Forms. T&F-2 ©2007 D. J. Foreman Tables.
Creating and Processing Web Forms
Chapter 5 Validating Form Data with JavaScript
Validation and Building Small Apps
Unit I: Collecting Data with Forms
Web Development & Design Foundations with H T M L 5
Forms, cont’d.
Events: Changed and Input
Introduction to HTML: Forms
Presentation transcript:

Dreamweaver Forms Overview

Forms – A Little Review Most user/webpage communication is one way, like this: Most user/webpage communication is one way, like this: BrowserWeb Server

Forms – A Little Review Forms allow two-way communication with pages Forms allow two-way communication with pages BrowserWeb Server

Forms – A Little Review Forms provide two-way communication between you (the user) and a Web server Forms provide two-way communication between you (the user) and a Web server Used to allow the user to enter something Used to allow the user to enter something Forms themselves are just a container Forms themselves are just a container

Forms – A Little Review Forms can contain various types of input fields: Forms can contain various types of input fields: - Text boxes- Text areas - Check boxes- Option buttons - Push buttons- Drop-down boxes

Forms – A Little Review Forms are processed by a program called a form handler Forms are processed by a program called a form handler It runs on the web server It runs on the web server The form sends data to a form handler when submit is clicked The form sends data to a form handler when submit is clicked Data from all fields is sent in Name/Value pairs via a Get or Post method Data from all fields is sent in Name/Value pairs via a Get or Post method This is defined on the FORM tag using the ACTION and METHOD attributes This is defined on the FORM tag using the ACTION and METHOD attributes

Name: SubmitReset How It All Sorta Works 1. User Enters text 2. User Clicks Submit 3. Data gets sent to form handler Name=Filmore+Pain 4. Data gets processed by form handler Browser Web Server Filmore Pain 5. May send data back Name Entered 1a. Scripts may edit data 2a. Scripts may edit data

Using Forms in Dreamweaver Use the Forms menu on the Insert panel Use the Forms menu on the Insert panel If you insert a form field outside of a form, it will also insert a form If you insert a form field outside of a form, it will also insert a form Two kinds of form fields Two kinds of form fields Basic Basic Normal, no formatting or edits Normal, no formatting or edits Like what we did in HTML Like what we did in HTML Spry Spry Built-in formatting and edits Built-in formatting and edits We’re going to use spry form fields We’re going to use spry form fields

Using Forms in Dreamweaver General process General process Add external structure (tables, labels, etc.) if necessary Add external structure (tables, labels, etc.) if necessary Insert a form and edit attributes Insert a form and edit attributes Insert internal structure (tables, labels, etc.) if necessary Insert internal structure (tables, labels, etc.) if necessary Insert form fields and edit attributes Insert form fields and edit attributes Don’t forget to insert buttons Don’t forget to insert buttons Demo time Demo time