Beefy Boxes and Bandwidth Generously Provided by pair Networks
Don't ask to ask, just ask
 
PerlMonks  

Cannot clear cgi param (if it's really what I need to do)

by lepetitalbert (Abbot)
on Jan 30, 2008 at 16:10 UTC ( [id://665151]=perlquestion: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    if ( $mode eq "add" ) {
     # print add page form
    ...
    if ( $mode eq "save" ) {
     # save add form infos
    }
    
  2. or download this
    print hidden( 'mode' , 'save' );
    
  3. or download this
    <input type="hidden" name="mode" value="add"  />
    
  4. or download this
    print hidden( 'mode' , 'save' );
    
  5. or download this
    <input type=hidden name=mode  value=save />
    
  6. or download this
    $query -> delete('mode');
    
    $query -> delete_all();
    

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others chanting in the Monastery: (3)
As of 2024-04-26 05:25 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found