Your name:

See the localtime_cal.cgi PERL code and use of CGI module functions.

Review of the Friday, July 13th lab class.

  1. Note use of qq() instead of double quotes.
  2. Note use of back tic to invoke Unix cal command on server.
  3. See how the name of the day of the week was done without using an array. Which way do you like more?
  4. See the localtime(time) function and the list of values that it returns.
  5. Study how you would modify the ACTION=script so that it used an array @a to hold localtime(time) results.
    $a[4] would hold the month number, for example.