Fundamentals of Computer Science I (CS151 2003F)
[Skip to Body]
Primary:
[Front Door]
[Current]
[Glance]
-
[Honesty]
[Instructions]
[Links]
[Guidelines for Lab Writeups]
Groupings:
[EBoards]
[Examples]
[Exams]
[Handouts]
[Homework]
[Labs]
[Outlines]
[Readings]
[Reference]
Misc:
[Scheme Report]
[Glimmer Scheme Reference]
[CSC151.01 (Gum)]
[CSC151 2003S]
[CSC151 2002F]
[SamR]
Back to Merge Sort. On to Project: A Simple CGI Application.
Held: Tuesday, 25 November 2003
Summary: Today we begin our exploration of the CGI scripts that are used to dynamically generate Web pages.
Related Pages:
greeting.html, a sample file for the lab.greeting.scm, a sample file for the lab.webutils.scm, a library for the lab.Due
Notes:
Overview:
.cgi represents CGI scripts).
cgi-bin are CGI scripts).
.cgi is a CGI script.
(page) procedure
that returns a string that represents an HTML page.
(page).
#!/bin/bash /home/rebelsky/bin/schemeweb your-scheme-file
/home/rebelsky/bin/schemeweb is the helper program
I've set up to run Scheme-based CGI scripts.
<form method="get" action="cgi-script"> <input type="text" name="variable-name"> <input type="submit" value="text-on-button"> </form>
get-cgi-variable procedure to
extract the value associated with a variable name from a form.
(define fave-color (get-cgi-variable 'color "Blue"))
get-cgi-variable, you need to load
my Web utilities with
(load "/home/rebelsky/Web/Scheme/webutils.ss")
Back to Merge Sort. On to Project: A Simple CGI Application.
[Skip to Body]
Primary:
[Front Door]
[Current]
[Glance]
-
[Honesty]
[Instructions]
[Links]
[Guidelines for Lab Writeups]
Groupings:
[EBoards]
[Examples]
[Exams]
[Handouts]
[Homework]
[Labs]
[Outlines]
[Readings]
[Reference]
Misc:
[Scheme Report]
[Glimmer Scheme Reference]
[CSC151.01 (Gum)]
[CSC151 2003S]
[CSC151 2002F]
[SamR]
Disclaimer:
I usually create these pages on the fly
, which means that I rarely
proofread them and they may contain bad grammar and incorrect details.
It also means that I tend to update them regularly (see the history for
more details). Feel free to contact me with any suggestions for changes.
This document was generated by
Siteweaver on Tue Dec 9 14:00:00 2003.
The source to the document was last modified on Mon Sep 1 13:30:51 2003.
This document may be found at http://www.cs.grinnell.edu/~rebelsky/Courses/CS151/2003F/Outlines/outline.48.html.
You may wish to
validate this document's HTML
;
;
Check with Bobby