Bishop's coat of arms Valid HTML 4.01
        Transitional

Interactive web page design

The web page for CS 203 and CS 207

Winter  202 class

Class list with link to pages (You should be here after lab 1)

See your Marks and remarks

Class pictures

CS 203 Course Outline

CS 203 Course Web Page

CS 207 Course Outline

Course pack Contents

This is the material in the printed "course pack", which you may consult during tests. You can make notes in it, for example.

Advanced material and student pages at Osiris
Documentation refrences

CS 207 Assignments , Lab of: (Complete by Friday.)

  1. January 22, An organization, and a form
  2. January 29, Use database for form request
  3. February 5, A second table, and php to modify
  4. February 12,
  5. February 19, Do more, validate a page
  6. February 26,

  7. (Reading Week)
  8. March 11,
  9. March 18.
  10. March 25
  11. April 8. Improve!
  12. April 12-16, 2021

Database backup instructions


Previous classes

Class list (Fall 2022) with link to pages

Class list (Fall 2021) with link to pages

Class list (Winter 2021) with link to pages

Class list (Fall 2020) with link to pages

Class list (Fall 2019) with link to pages

Class list (Winter 2019) with link to pages

Class list (Fall 2018) with link to pages



Images: slideshow examples

Registration demonstration Sign in (password required)


Documentation

Cautionary tales

PHP:  www.php.net  especially useful is the Function Reference, by categories

PostgreSQL, Find at www.postgresql.org

Finding help while using psql, etc.

Other language documentation

(subject to upgrades, my links will go out of date whenever a version changes)

Anatomy of an HTML page

Web pages are written in HTML format, which is a "plain text" file that uses "markup tags" to control the appearance of the displayed text. Tags come in pairs that are nested, and define sections, paragraphs, lists, in-line enhancements, etc. The whole page , for instance, is bracketed by <html> ... </html>

Author will be very useful if I print the source of your page, so I can give you credit!

<!DOCTYPE HTML>
<html>
<head>
<title>Hello Page</title>
<meta name="author" content="Lin Jensen">
</head>
<body>
<h1>
Hello
World!
</h1>
How are you?
How's the weather in <em>Lennoxville?</em>
<p>
This is a paragraph.
blah, blah blah, blah blah, blah blah, blah blah, blah blah, blah
blah, blah <strong>blah, blah</strong> blah, blah
</p>
</body>
</html>

This source looks like:

Hello World!

How are you? How's the weather in Lennoxville?

This is a paragraph. blah, blah blah, blah blah, blah blah, blah blah, blah blah, blah blah, blah blah, blah blah, blah blah, blah blah, blah blah, blah blah, blah blah, blah blah, blah


Go to Course notes Contents
Home page of Lin Jensen