Re: CGI.pm > 2.98 breaks CGI::Carp?

2003-09-23 Thread Bob X
"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

Re: saving a textarea to a text file

2003-06-27 Thread Bob X
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]

Re: saving a textarea to a text file

2003-06-27 Thread Bob X
"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

saving a textarea to a text file

2003-06-26 Thread Bob X
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]

Re: MVC for cgi perl?

2003-06-21 Thread Bob X
"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

Dumping data into MySQL

2003-06-10 Thread Bob X
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

Good Perl cgi book?

2003-03-18 Thread Bob X
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]

Re: my( $string )

2003-03-07 Thread Bob X
"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