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

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






mod_perl2 User's Guide

mod_perl2 User's Guide

By Stas Bekman, Jim Brandt
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
mod_perl Pocket Reference

mod_perl Pocket Reference

By Andrew Ford
Writing Apache Modules with Perl and C

Writing Apache Modules with Perl and C

By Lincoln Stein, Doug MacEachern
Embedding Perl in HTML with Mason

Embedding Perl in HTML with Mason

By Dave Rolsky, Ken Williams


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 1.0 APInext page: Apache::File - advanced functions for manipulating files at the server side