in reply to Re: html->perl->c->perl...... work dang it
in thread html->perl->c->perl...... work dang it
#!/usr/local/bin/perl -wT use strict; use CGI; if ($#ARGV==0) { my $post_data=new CGI; my $username=$post_data->param('username'); my $on_off=$post_data->param('on_off'); my $message=$post_data->param('message'); } else { &Command(); } @junk = ("authorize", "vacation.pl", $username, $on_off, $message); $runme = join (" ",@junk); &Header();
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Re: html->perl->c->perl...... work dang it
by halley (Prior) on May 15, 2003 at 17:07 UTC | |
by Anonymous Monk on May 15, 2003 at 17:59 UTC |