Re: Need a little help with this one

2004-07-10 Thread David Arnold
Fred et al, The FDFToolkit and reference is available at: http://partners.adobe.com/asn/acrobat/forms.jsp The documentation is sparse, to say the least, but: NextFieldName Gets the next field name. The difficulty, I believe, occurs before the program gets to NextFiledName, as if I make this ad

Re: Need a little help with this one

2004-07-10 Thread Fred Moyer
> I have a file /var/www/cgi-bin/tryit.cgi: > #! /usr/local/bin/perl > # tryit.pl > > use Acrobat::FDF; ... > $currentField=$inFDF->NextFieldName(""); ... > [Sat Jul 10 20:04:42 2004] [error] Can't call method "NextFieldName" on an > undefined value at /usr/local/apache/htdocs/online_testing/perl/t

Need a little help with this one

2004-07-10 Thread David Arnold
All, I have a file /var/www/cgi-bin/tryit.cgi: #! /usr/local/bin/perl # tryit.pl use Acrobat::FDF; $inFDF=new Acrobat::FDF('-',$ENV{'CONTENT_LENGTH'}); my $currentField; my $currentValue; print("Content-type: text/plain\n\n"); $currentField=$inFDF->NextFieldName(""); while($currentField) {