in reply to Creating a browser based script to update a data file
You could do:
That would at least give you a way to test your html form fields, like 'file', with which you can experiment.#!/usr/bin/perl use warnings; use strict; use CGI; print "Content-type: text/html\n\n"; # from perldoc CGI my $query=CGI->new; print "<h2>Current Values</h2> $query\n"; #or #print Dump;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Creating a browser based script to update a data file
by Your Mother (Archbishop) on Aug 05, 2010 at 16:29 UTC |