mod_perl logo
perl icon







previous page: Apache::Options - OPT_* defines from httpd_core.hpage up: mod_perl APInext page: Apache::File - advanced functions for manipulating files at the server side


Apache::Table - Perl interface to the Apache table structure











Embedding Perl in HTML with Mason

Embedding Perl in HTML with Mason

By Dave Rolsky, Ken Williams
Practical mod_perl

Practical mod_perl

By Stas Bekman, Eric Cholet
The mod_perl Developer's Cookbook

The mod_perl Developer's Cookbook

By Geoffrey Young, Paul Lindner, Randy Kobes


Table of Contents

Synopsis

  use Apache::Table ();
  
  my $headers_out = $r->headers_out;
  while(my($key,$val) = each %$headers_out) {
    ...
  }
  
  my $table = $r->headers_out;
  $table->set(From => 'dougm@perl.apache.org');

mod_perl needs to be compiled with at least one of the following options:

 DYNAMIC=1
 PERL_TABLE_API=1
 EVERYTHING=1


TOP

Description

This module provides tied interfaces to Apache data structures.



TOP

Classes



TOP

Methods



TOP

Maintainers

Maintainer is the person(s) you should contact with updates, corrections and patches.



TOP

Authors

Only the major authors are listed above. For contributors see the Changes file.



TOP

See Also

Apache, mod_perl







TOP
previous page: Apache::Options - OPT_* defines from httpd_core.hpage up: mod_perl APInext page: Apache::File - advanced functions for manipulating files at the server side