#!/usr/bin/perl # view.html: View a rental property in the gov database # Client: Villas of Gatlinburg # Created 11/02/99 by Celeste require "OLconfig.pl"; # Initialize CGI environment: use CGI qw/:standard/; require "custom/vdslib.pl"; print header; $inName = param('Name'); $inName =~ s/\'/\\\'/g; $inNum = param('Num'); $top = &VDS::readFile('top.html'); $top =~ s#PAGETITLE#
); $bottom = &VDS::readFile('bottom.html'); print $bottom; exit;