"Randal L. Schwartz" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
> > "Db" == Db <[EMAIL PROTECTED]> writes:
>
> Db> I'm working on a large web application with a friend of mine and we
> Db> thought it would be a good idea to update the modules we were using.
> Db> Using CPAN.p
I had to look hard for the missing > on that one! lol
--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
"Charles K. Clarkson" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
> Besides the close, these look the same to me. How is
> Andrews' solution wrong?
>
> : use CGI;
> : my $q = new CGI;
> : my $record = $q->param('text_field');
> : open(OUTFILE, ">output.txt") or d
How would I go about saving the textarea of an HTML page to a text file?
Bob
--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
"Richard Heintze" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
> Is there anyway seperate the UI layer from the back
> end layer when programming cgi perl?
>
If this is a largish application then I would use CGI::Application along
with HTML::Template. If it is small then HTML::Templa
I want to create a very simple backend for a user. Basically a portion of a
page will be kept in a database. The user will navigate to a certain page
and then Perl will pull the data out of the db in a textfield. The users
changes it and hits submit and pop it goes back in.
The question is this. C
What is the best book for a beginner to get started with on Perl and CGI?
Bob
--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
"David Gilden" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
> Quick question:
> my( $string ) = "you ordered " . $q->param('quantity') . " foobars\n";
>
>
> What with the '( )' do I need them every time I declare a variable?
>
You can declare them like this:
my $foo;
my $bar;
Or