NAME

Form::DemonCore - The demon core of form managements

VERSION

version 0.001

SYNOPSIS

use Form::DemonCore;

my $form = Form::DemonCore->factory({
  name => 'testform',
  fields => {
    testfield => {
      notempty => 1,
    },
  },
  input_values => {
    testform => 1,
    testform_testfield => "test",
  },
});

if (my $result = $form->result) {
  ...
}

SUPPORT

IRC

Talk to Getty on irc.perl.org.

Repository

http://github.com/Getty/p5-form-demoncore
Pull request and additional contributors are welcome

Issue Tracker

http://github.com/Getty/p5-form-demoncore/issues

AUTHOR

Torsten Raudssus <torsten@raudssus.de>

COPYRIGHT AND LICENSE

This software is copyright (c) 2011 by Torsten Raudssus.

This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.