Re: problem

2001-06-03 Thread Derek Duhon
- Original Message - From: "Derek Duhon" <[EMAIL PROTECTED]> To: "Ãèªá¤ô¤ë" <[EMAIL PROTECTED]> Sent: Sunday, June 03, 2001 11:22 PM Subject: Re: problem > An update on my little problem > I took the advice many of you gave me, and escaped out the quotes, which did > in fact prove helpf

Session.pm

2001-06-03 Thread Michael Chopek
Hi Folks; I'm trying to get a handle on using "sessions" so I have been trying to get through the docs at; http://www.awu.id.ethz.ch/~th/session/ (Session.pm) He has a few sample programs and his first is below; #!/usr/bin/perl -w # Hell

Re: remove from this list

2001-06-03 Thread Christian Campbell
adelphia wrote: > This list if full of usefull info, but it's just out of control. > How can I get removed from it? Same way you got on, at learn.perl.org. Anybody else wants to unsubscribe, go there, too. Christian __ 117 NW 15th

remove from this list

2001-06-03 Thread adelphia
This list if full of usefull info, but it's just out of control. How can I get removed from it? John

Re: using fork() in CGI script

2001-06-03 Thread Howdy!
- Original Message - From: "Mike Miller [EMAIL PROTECTED] X" > I have a CGI script which forks off a new process to perform lengthy > operations, and then uses the parent to display a short message in > the browser indicating that the process has begun. > > However, I'm fi

Re: using fork() in CGI script

2001-06-03 Thread Randal L. Schwartz
> "Mike" == Mike Miller <[EMAIL PROTECTED]> writes: Mike> All: Mike> I have a CGI script which forks off a new process to perform lengthy Mike> operations, and then uses the parent to display a short message in Mike> the browser indicating that the process has begun. Mike> However, I'm fi

using fork() in CGI script

2001-06-03 Thread Mike Miller
All: I have a CGI script which forks off a new process to perform lengthy operations, and then uses the parent to display a short message in the browser indicating that the process has begun. However, I'm finding that the browser tries to continue loading until the child has completed. How c

Re: Protocol issue

2001-06-03 Thread Curtis Poe
--- * <*@*.*> wrote: [snip]... > p.s.: I read to use the -wT flags for security reasons > as well as strict to inforce good programming habits. > your Thoughts on that issue are.? I received this email a couple of days ago and I thought I should respond to the group since t

Re: A good book?

2001-06-03 Thread Chrysta R. Collins
I would pick up a copy of _Programming Perl_ and _Learning Perl_, published by O'Reilly and Associates. As far as CGI specific, I think the man page for CGI.pm is great and wonderfully serves as a difinitive reference. -Chrysta On Sat, 2 Jun 2001, Hager Ben-Mahmoud wrote: > Hi, > > I just

Re: problem

2001-06-03 Thread Abdulaziz Ghuloum
The query string holds the contents of all variables passed to the script, not a single variable. It's a string. In the lines: $next = ++$current; $prev = --$current; what you're doing really is increment the value of $current and assign the new value to $next. Same thing for $prev which equ