Beefy Boxes and Bandwidth Generously Provided by pair Networks
Come for the quick hacks, stay for the epiphanies.
 
PerlMonks  

Re^3: Web form to alter files is writing to file before submit button is pressed.

by tangent (Parson)
on Mar 11, 2012 at 19:44 UTC ( [id://959003]=note: print w/replies, xml ) Need Help??


in reply to Re^2: Web form to alter files is writing to file before submit button is pressed.
in thread Web form to alter files is writing to file before submit button is pressed.

I often use CGI::Minimal to see what is going on with form inputs. It has a handy function called "calling_parms_table()" which returns a HTML table of all form and environment variables. It will show you what happens when you hit Enter instead of pressing the button - the result seems to vary across different browsers. This becomes important if, say, you had two buttons on the form: make_changes and undo_changes.
  • Comment on Re^3: Web form to alter files is writing to file before submit button is pressed.

Replies are listed 'Best First'.
Re^4: Web form to alter files is writing to file before submit button is pressed.
by Anonymous Monk on Mar 12, 2012 at 08:05 UTC

    "calling_parms_table()"

    CGI/CGI::Simple provide

    my $q = CGI->new; print $cgi->header(), $q->dump, '<hr>', CGI->new( \%ENV )->Dump;

    I don't think I'd use CGI::Minimal, it appears to be too not well tested, the bug cue is very empty

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://959003]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others meditating upon the Monastery: (9)
As of 2024-04-23 09:06 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found