RE: Display timing

2003-07-10 Thread Rod Jenkins
I have done perl for awhile, but I was self taught. I did what works, now I am trying to do it right. IE: With style. Thanks for the info. > Welcome to perl, -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Display timing

2003-07-10 Thread Oliver Schnarchendorf
On 10 Jul 2003 10:41:54 -0500, Rod Jenkins wrote: > First of all I just started using cgi last week. So, if you see > something strange in my code it would be lack of knowledge. Here is the > question: > > I have some lines that display stuff, then do more code, then display > more stuff. Is th

RE: Display timing

2003-07-10 Thread Charles K. Clarkson
Rod Jenkins <[EMAIL PROTECTED]> wrote: : : First of all I just started using cgi last week. : So, if you see something strange in my code it : would be lack of knowledge. : Here is the : question: : : I have some lines that display stuff, then do : more code, then display more stuff. Is there

Re: Display timing

2003-07-10 Thread Kristofer Hoch
###3 Rod, "qw" stands for "Quoted Words". Something like :standard is called a 'bareword'. A bareword is something that is not recognized by the perl parser. qw does the quoteing for you. "use CGI qw(:standard);" is the same as writing "

Display timing

2003-07-10 Thread Rod Jenkins
First of all I just started using cgi last week. So, if you see something strange in my code it would be lack of knowledge. Here is the question: I have some lines that display stuff, then do more code, then display more stuff. Is there a way to get the first stuff displayed before the other co