Test message...does this list see this? _______________________________________________________ Send a cool gift with your E-Card ...
3727
Charles K. Clarkson
c_clarkson@...
Jun 3, 2001 9:38 pm
<franky_claeys@...> ... [snip - thanks that was helpful.] ... I'm confused: Do you want a link to the image? <li> <a...
3728
Charles K. Clarkson
c_clarkson@...
Jun 3, 2001 10:08 pm
Jeremiah Megie <jmegie81@...> ... Sorry, but I don't know which part is the 'done' screen. Can you be more specific? Try testing the create_email sub as...
3729
Charles K. Clarkson
c_clarkson@...
Jun 4, 2001 12:13 am
... It should be fairly easy. Look at the File::Copy module, so you don't have to worry about your operating system's special needs. I believe stat will help...
3730
Greg
webmaster@...
Jun 4, 2001 8:37 am
... No!...
3731
Gordon Stewart
gordonistewart_nz@...
Jun 4, 2001 8:53 am
... Thanks Kul - for our online chat in Yahoo Messenger. the problem that fixed my script was changing local(@rawCookies) = split (/;/,$ENV{39;HTTP_COOKIE39;}); to...
Hi Gang! Does anyone know (yes of course someone does!) how I can get round this problem . . . I have a set of scripts which allow me to post job adverts on my...
3734
portia317@...
Jun 4, 2001 12:59 pm
... Sorry- this is what I want it to look like: SOURCE IP = 192.101 total hits are 2 LOG SOURCE = Meade (1), Jackson (1) //I'm not getting Jackson? SOURCE...
3735
Jeremiah Megie
jmegie81@...
Jun 4, 2001 2:06 pm
This is weird, none of my posts are going through... ... _______________________________________________________ Send a cool gift with your E-Card ...
3736
Greg
webmaster@...
Jun 4, 2001 2:30 pm
Hmmmmm. Are you sure you are setting permissions correctly? LOL...
3737
d.wilson@...
Jun 4, 2001 2:56 pm
Hi, I am using the perl dbi to select a multiline comment from the user_tab_comments table in an oracle database. I fetch the comment into an array as below. ...
3738
DCrande@...
Jun 4, 2001 4:39 pm
Hi all, I have a form that I want to send information to a specific file, append it. my form has 4 choices and each file is located in different area. I...
3739
Charles K. Clarkson
c_clarkson@...
Jun 4, 2001 4:50 pm
... Well, I changed the data structure to accommodate the log source counts: Previous structure: { '192.10039; => 'Monmouth39;, '192.10139; => 'Meade39;, '192.10239; =>...
3740
jcjxxl@...
Jun 4, 2001 4:55 pm
Hi Group. I'm new to PERL and was hoping to get some help. How do you read data from a database with multiple tables? What I want to be able to do is after I...
3741
Charles K. Clarkson
c_clarkson@...
Jun 4, 2001 5:22 pm
... my @comment_lines = $sth->fetchrow_array(); my @new = split /\n/, $comment_lines[0]; or: my @comment_lines = $sth->fetchrow_array(); @comment_lines = split...
3742
d.wilson@...
Jun 4, 2001 6:01 pm
... you ... Download and install the perl dbi and dbd specific to your database. Then get the O'Reilly book 'Programming the Perl DBI' by Alligator Descarte &...
3743
Charles K. Clarkson
c_clarkson@...
Jun 4, 2001 6:31 pm
... #!/usr/bin/perl use strict; use diagnostics; use Data::Dumper; my $directory = '../Perl39;; my %backup; opendir DIR, $directory or die "Yikes! $directory...
3744
Ulises Vega
uvega@...
Jun 4, 2001 7:09 pm
Hello everybody, I'm using fork with a simple application, and it looks like if the father process continues executing without waiting his child, the following...
3745
Hanson, Mark
Mark.Hanson@...
Jun 4, 2001 8:01 pm
Hi Gurus! This may be a goofball question, but I thought I'd throw it out there to see if anyone has a nifty method. I have an array of names that will vary in...
3746
Jeremiah Megie
jmegie81@...
Jun 4, 2001 8:46 pm
Why don't these two statements work? I'm in the telnet mod: $t->print("sed \"s/^\(guestftp2.*[^:]\)\$/92;1,$FORM{'webuser39;/\" < group- ... $t->print("sed...
3747
Charles K. Clarkson
c_clarkson@...
Jun 4, 2001 9:43 pm
... Can you supply us with the first 20-30 lines of the actual file and an example of what you want it to look like. The script seems fairly easy to write, but...
3748
Charles K. Clarkson
c_clarkson@...
Jun 4, 2001 9:43 pm
... [snipped - thanks for posting it, made things easy] #!/usr/bin/perl use strict; use warnings; use diagnostics; use CGI qw/param/; use CGI::Carp...
3749
Charles K. Clarkson
c_clarkson@...
Jun 5, 2001 12:01 am
<zoom29@...> asked ... It looks like perl thinks TOSERVER is closed, but I tell you what's wrong without more code. HTH, Charles K. Clarkson It is one...
3750
Peter Lovett
peter@...
Jun 5, 2001 2:13 am
Mark, If your array is in a variable called @names, you can use this code: $Message = "The following names: \" . join("92;n", @names) . "\n will be included."; ...
3751
Charles K. Clarkson
c_clarkson@...
Jun 5, 2001 3:25 am
... I have no idea what this does, but the first line seems to be missing '}' from $FORM{'webuser'. The second line seems to be missing the ')' from ...
3752
j y
y_jim542000@...
Jun 5, 2001 3:37 am
$_ = 'Us ? The bus usually waits for us, unless the driver forgets us.' print "$_\n"; s/\b([Uu]) s(\W) /chr(ord($1)-1).hem.$2/eg; print "$_\n"; My question: ...
3753
j y
y_jim542000@...
Jun 5, 2001 3:38 am
$_ = 'Us ? The bus usually waits for us, unless the driver forgets us.'; print "$_\n"; s/\b([Uu]) s(\W) /chr(ord($1)-1).hem.$2/eg; print "$_\n"; My question: ...
3754
Greg
webmaster@...
Jun 5, 2001 9:59 am
... And the prize for guessing correctly is?...
3755
tstraub@...
Jun 5, 2001 10:38 am
Hi, I am writing a log file which should be read in into an TK listbox. Each column is separated by a tab. Displaying the log file shows a black border for...