#!/usr/bin/perl use CGI qw(:standard); use URI::Escape; # ============================================================================================ # # announcement.cgi: Opens a proxy .html file and embeds it in a local page with KSU template styles applied # # # Created at the KSU Division of Communications and Marketing # # # David Noel Pedergnana, Multimedia Designer # # www.k-state.edu/webservices * dnp@ksu.edu # # © MMXI D.N.B. Pedergnana # # ============================================================================================ # Get input parameters my $id = param('id'); # Redirect my $url = "announcement.php?id=$id"; print "Location: $url\n\n";