More CGI Programming - PowerPoint PPT Presentation

1 / 11
About This Presentation
Title:

More CGI Programming

Description:

em generates em HTML tag (~italics) The checkbox parameter is a list of checked boxes ... A HREF='http://home.ust.hk/~horner' Andrew's Home Page /A END ... – PowerPoint PPT presentation

Number of Views:35
Avg rating:3.0/5.0
Slides: 12
Provided by: andrew184
Category:
Tags: cgi | bold | home | more | page | programming | tagged

less

Transcript and Presenter's Notes

Title: More CGI Programming


1
More CGI Programming
  • Learning Objectives
  • To understand illustrate how to produce input
    from different components (checkbox, textarea,
    links etc) of a webpages Form
  • To learn illustrate how to generate different
    input components in a webpage using CGI programs

2
More CGI Programming
  • Table of Content
  • Checkbox and Link Example
  • Checkbox and Link Example page 1
  • Checkbox and Link Example page 2
  • Radio Button Text Area Example
  • Radio Button Text Area Example 1
  • Radio Button Text Area Example 2
  • Radio Button Text Area Example 3

3
Checkbox and Link Example (1)
  • The following example shows how to generate
    checkboxes and links with your CGI program.
  • Checkboxes allow you to select more than one
    option.
  • The initial screen is shown on the right.

4
Checkbox and Link Example (2)
  • The result screen is shown on the right.
  • Note that the output information is displayed
    between the original form and the link.

5
Checkbox and Link Example page1
  • !/usr/local/bin/perl5 -w
  • Simple example with checkbox and link
  • use CGI qw(standard)
  • print header
  • print start_html("A Simple Example"),
  • h1("A Simple Example"),
  • start_form,
  • "What's your name? ",textfield("name"),
  • p,
  • "What is Bill (check all that apply)?",
  • p,
  • checkbox_group("words", qw(good bad ugly rich
    famous handsome) ,
  • "rich", "famous"),
  • p,
  • "What is Bill's favorite color? ",
  • popup_menu("color","lucky red","money
    green","Microsoft blue"),
  • p,
  • submit,
  • end_form, hr

Multi-line print statement
p puts a new paragraph/newline
which boxes to check as defaults
Submit Query used as default submit button name
6
Checkbox and Link Example page2
em generates ltemgt HTML tag (italics)
  • if (param())
  • print
  • "Your name is ",em(param("name")),
  • p,
  • "Bill is ",em(join(", ",param("words"))),
  • p,
  • "Bill's favorite color is ",em(param("color")),
  • hr
  • print a(hrefgt"http//home.ust.hk/horner",
  • "Go to Horner's Homepage for Hints")
  • print end_html

The checkbox parameter is a list of checked boxes
generates HTML link
7
Radio Button Text Area Example (1)
  • The following example shows how to generate radio
    buttons and textareas with your CGI program.
  • Radio buttons only allow you to select one
    option.
  • The initial screen is shown on the right.

8
Radio Button Text Area Example (2)
  • The result screen is shown on the right.
  • Note that both the initial screen and result
    screens have the same title and footer.

9
Radio Button Text Area Example page1
  • !/usr/local/bin/perl5 -w
  • use CGI qw(standard)
  • print header
  • print start_html("Radio Button and Textarea
    Example")
  • print "ltH1gtRadio Button and Textarea
    Examplelt/H1gt\n"
  • if(!param())
  • print_prompt() initial screen
  • else
  • do_work() result screen
  • print_end() print footer
  • print end_html

10
Radio Button Text Area Example page2
  • sub print_prompt
  • print start_form
  • print "ltEMgtWhat's your name?lt/EMgtltBRgt"
  • print textfield("name")
  • print checkbox("Not my real name")
  • print "ltPgtltEMgtHow many billion dollars does
    Bill have?lt/EMgtltBRgt",
  • radio_group("how much", "Not
    enough!",1,10,100,1000,"Too much!",1)
  • print hidden("Secret","Bill Gates owns
    Netscape")
  • print "ltPgtltEMgtWhat new feature will
    Windows2000 have?lt/EMgtltBRgt"
  • print scrolling_list("Features", "seat
    belts",
  • "auto-transfer to Bill's bank account",
    "crash button",
  • "invisible icons", "fill-disk function",
    "simulate power-surge",
  • "seat belts", 3)
  • print "ltPgtltEMgtWhat do you think of
    Bill?lt/EMgtltBRgt"
  • print textarea("Comments", "", 3, 50) 3
    rows x 50 chars
  • print "ltPgt", submit("Action", "Go!"), reset,
    endform

default value is 1
invisible text
3 items displayed
11
Radio Button Text Area Example page3
  • sub do_work
  • my(_at_values,key)
  • print "ltH2gtHere are the current settings in
    this formlt/H2gt"
  • foreach key (param())
  • print "ltSTRONGgtkeylt/STRONGgt -gt "
  • _at_values param(key)
  • print join(", ",_at_values),"ltBRgt\n"
  • sub print_end print footer
  • print ltltEND
  • ltHRgt
  • ltADDRESSgtAndrew Hornerlt/ADDRESSgt
  • ltA HREF"http//home.ust.hk/horner"gtAndrew's
    Home Pagelt/Agt
  • END

parameters stored in hash as key-value pairs
ltSTRONGgt similar to ltBOLDgt
use special font for addresses
here document for link
Write a Comment
User Comments (0)
About PowerShow.com