Beefy Boxes and Bandwidth Generously Provided by pair Networks
go ahead... be a heretic
 
PerlMonks  

Re^5: OUR declaration

by perrin (Chancellor)
on Sep 25, 2006 at 15:34 UTC ( [id://574756]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    my $q = CGI->new;
    show_name();
    ...
    sub show_name {
        print $q->param('name');
    }
    
  2. or download this
    my $q = CGI->new;
    show_name($q);
    ...
        my $q = shift;
        print $q->param('name');
    }
    

Log In?
Username:
Password:

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

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

    No recent polls found