Pearl Parks and Recreation Class Listings

Please use the checkbox(es) to indicate which class/classes you would like to register for.

Title Location Time Start Cost
Pilates (13-Adult) Pearlview RECenter 9am Sat 9/10/2011 $100
Zumba (13-Adult) Pearlview RECenter 10am Sat 9/10/2011 $100
Tai Chi I (13-Adult) Pearlview RECenter 12pm Sat 9/10/2011 $100
Tai Chi II (13-Adult) Pearlview RECenter 1:30pm Sat 9/10/2011 $100
Hatha Yoga (13-Adult) Pearlview RECenter 11:00am Sun 9/11/2011 $100
Yoga for Power (13-Adult) Pearlview RECenter 9:30am Sun 9/11/2011 $100
5K Team-Beginner (13-Adult) Pearlview RECenter 8:00am Tue 9/13/2011 $100
Cycle Spin Youth & Family (11-Adult) Pearlview RECenter 5pm Tue/Thu 9/13/2011 $100
Low Impact Aerobics (13-Adult) Pearlview RECenter 5pm Wed 9/14/2011 $100
Weight Training for Women (16-Adult) Pearlview RECenter 11am Wed 9/21/2011 $100

#### #!/opt/csw/bin/perl use CGI qw/:standard/; my $name = param('name'); my $address = param('address'); my $city = param('city'); my $state = param('state'); my $zip = param('zip'); my $phone = param('phone'); my $fax = param('fax'); my $email = param('email'); my $email2 = param('email2'); my $gender = param('gender'); my $invoice = param('invoice'); print header(), start_html('Registration Confirmation'), hr(), h2("Pearl County Parks and Recreation"), h4("Class Registration Confirmation"), hr(), p("Thank you for registering with Pearl County Parks and Recreation."), p("Please find your class registration confirmation below."), hr(), p("Name:",$name), p("Address:",$address), p("City:",$city), p("State:",$state), p("ZIP:",$zip), p("Phone:",$phone), p("FAX:",$fax), p("Email:",$email), br(), hr(), hr(), p("You are registered for the following class(es)."), p("As requested, your invoice will be sent to you by $invoice."), br(), my @classes = param('class'); foreach my $class (@classes){ print "$class
\n"; } end_html();