CIS 236 Interactive Web Programming

Chapter 23 Exercises

 

Written Exercise(s)

Word process the following questions and your answers

Page 955: # 23.3, 23.4, 23.5, 23.6

 

Coding Exercise(s)

Write or modify the code (XHTML, CSS, JavaScript, PHP, etc.) needed to complete the following exercises from the text.  Hand in a printout of the source code and a screen shot of the results for each.

Page 955: #23.8

Page 955: #23.9

Copy the following code to the SQL tab in PHPMyAdmin (with your database) to create the table.

CREATE TABLE `Urltable` (
`URL` VARCHAR( 100 ) NOT NULL ,
`Description` VARCHAR( 100 ) NOT NULL
) ENGINE = MYISAM ;

INSERT INTO Urltable( URL, Description )
VALUES ('cis.sc4.edu/236', 'CIS 236 Class Page');