






Study with the several resources on Docsity
Earn points by helping other students or get them with a premium plan
Prepare for your exams
Study with the several resources on Docsity
Earn points to download
Earn points by helping other students or get them with a premium plan
Material Type: Notes; Class: Programming Language Concepts; Subject: Computer Science ; University: University of Alaska - Anchorage; Term: Unknown 1989;
Typology: Study notes
1 / 12
This page cannot be seen from the preview
Don't miss anything!







Global Environment Variables
Browser HTTP Server
Html page
Form Data
Results - CGI Program HTML or Image or Sound or ...
Web Server
HTML Here blah blah...
More html here…
Applets downloaded to local PC, execute there
…
Browser HTTP Server
Html page + ActiveX Program
ActiveX Program - A regular Windows Program!
Web Server
Possible Communications with anywhere. Lax security restrictions.
HTML:
Here is a form:
CGI Test"); print(""); print("Submission Received"); print(""); if ($_SERVER['REQUEST_METHOD'] == 'GET') { print(" GET Query:
"); print_r($_GET); print("
foo = ". $_GET['foo']. "bah = ". $_GET['bah']. "
"); } else { print(" POST Query:
"); print_r($_POST); print("
foo = ". $_POST['foo']. "bah = ". $_POST['bah']. "
"); }
?>