Hi and thanks for any help in advance :) I am an experienced programmer...but a Perl novice...and put simply I was wondering how I could open a web page given...
215
Dan Boger
dan@...
Mar 9, 2000 7:49 pm
On Thu, 09 Mar 2000 10:45:23 -0800 "One" <b222b@...> wrote ... it's quite simple actually... use LWP::Simple; $page = get("http://www.lugnet.com"); ...
216
Angelo G Costa
angels.fire@...
Mar 9, 2000 11:50 pm
Hi! I've been searching for a good reference manual and I would like to know if any of you have any suggestion about a good online Manual or Reference for...
217
CN Liu
cn@...
Mar 10, 2000 12:15 am
... I feel this document is much helpful to me: http://www.netcat.co.uk/rob/perl/win32perltut.html Regards, CN...
218
ofer
oferr@...
Mar 13, 2000 2:24 pm
hello to all 1. how can i pass a string from cgi to cgi ? 2. how can i run cgi from cgi ? 3. i tryied --- exec "./time.pl" but it dos't work ?...
219
Greg Webster
greg@...
Mar 13, 2000 2:37 pm
... Send it to the cgi with an URL like: http://www.domain.com/blah.cgi?string=this%20string The %20 is required for the spaces. I'm sure someone else will...
220
Jeff Boes
jboes@...
Mar 13, 2000 3:06 pm
... First, CGI programs assume that they are being invoked by the web server, with a specific set of environment variables. Don't invoke them in any other ...
221
Sundar Dinakaran
d_sundar_2000@...
Mar 14, 2000 6:50 am
Hi,
Is there any function or operators to compare two lists ?
Thanx,
Sundar __________________________________________________ Do You Yahoo!? Talk to your...
222
Jeff Boes
jboes@...
Mar 14, 2000 12:54 pm
... Not really, but it's pretty easy to make one: sub compare_lists { my($rA, $rB) = @_; # Note that you have to call this with *references* to the actual...
223
Roland Bauer
Roland.Bauer@...
Mar 14, 2000 3:50 pm
There is a module File::Slurp for this task. Roland...
224
ofer r
oferr@...
Mar 15, 2000 12:16 pm
ok that is nice but it dosn't work for me my problem is that i need to sava string like username=o and password=12 i wont my script to know what is the user...
225
Seth J
yodhert@...
Mar 17, 2000 2:09 am
I really want to learn how to write PERL. Can anyone help me. Im a 13 year old. I live on allowence, not a salary, so if you suggest anything, it might as well...
226
Skyward
skyward@...
Mar 17, 2000 2:23 am
Hello Seth J, er, Yodhert, Welcome to the world of Perl. It's a great language and if you learn it, you can earn it (money that is!). One of the best places...
227
Skyward
skyward@...
Mar 17, 2000 2:30 am
Here's another link I forgot to include: 8=) http://cs.millersv.edu/perl.dir/perl.html Dave ... From: Seth J <yodhert@...> To: perl-beginner@egroups.com...
228
Ingenue
nikita@...
Mar 17, 2000 3:12 am
www.perl.com ... From: "Seth J" <yodhert@...> To: <perl-beginner@egroups.com> Sent: Thursday, March 16, 2000 6:09 PM Subject: [PBML] Help me! I really want...
229
Jeff Boes
jboes@...
Mar 17, 2000 3:33 am
... http://www.perlmonth.com/. I have started writing a beginner's column there, and perhaps that will be of help to you. ... "It is the customary fate of new...
230
Philip Lima
plima@...
Mar 17, 2000 2:27 pm
Here is the location of a nice tutorial: http://www.netcat.co.uk/rob/perl/win32perltut.html Enjoy learning to benefiting yourself early. Best to you in your...
231
ofer r
oferr@...
Mar 19, 2000 2:20 pm
i would like to prevent cacheing , i tryied with this line "Pragma: no-cache;" but it dosn't work . help please...
232
Bill Lanier
bilanier@...
Mar 20, 2000 6:20 pm
Seth is it? I have a son named Seth... Oh well, if you don't already have a copy of perl, go to activestate's site for their windows version (it's free), or go...
233
Sheldon E. Smith
sheldon.smith@...
Mar 22, 2000 7:14 pm
... So what years are you getting, and where (when?) should the threshold be? If '70 and later versus '69 and before, then: $validator =~ /^(\d{2})\d{4}$/; #...
234
George
macbethgr@...
Mar 25, 2000 10:00 pm
Post your scripts, or check out one of the 5000+ PERL or Java scripts at Command Media. http://commandmedia.com...
235
Angi
angib@...
Apr 9, 2000 5:19 pm
Hi, I should mention that I am a beginner. I would also like to apologize if anyone has seen this message already, as I posted on a few other lists as well. I...
236
Greg Flowers
gregoryf@...
Apr 9, 2000 5:26 pm
Check the permissions on the directory/file that you are trying to write to....
237
Angi
angib@...
Apr 9, 2000 5:39 pm
Hi, The permissions have been set to execute, there is read/write access on the directory. I am able to open and write to this file using ASP, so I am assuming...
238
Aram Mirzadeh
awm@...
Apr 9, 2000 5:45 pm
Just as a test, try writing a very simple perl program and just opened the file and closes the file. See if that works, because the code looks right. ...
239
Ingenue
nikita@...
Apr 9, 2000 9:18 pm
Did you use "die" to see if there's any problems that get put into '$!' ? open (F, "> /path/to/file") or die "$!\n"; ... From: "Angi" <angib@...> ...
242
Ingenue
nikita@...
Apr 10, 2000 6:37 pm
Angi, You should use the absolute path to the file, not the relative one. For example: open (F, "/home/www/foo.com/cgi-bin/temp/550330623.html") or die...
243
Angi
angib@...
Apr 10, 2000 7:22 pm
Hi, I just sent a reply about my directory path, and it seems that I should not have had a / before cgi-bin. Thanks to everyone who helped (on all lists!) Angi...
244
Greg Webster
greg@...
Apr 12, 2000 1:17 am
Weird situation... I have a script which right now creates an array like: $FORM{adminemail} (where adminemail is the key to a value) I would like to convert...
245
Greg Webster
greg@...
Apr 12, 2000 3:26 am
The line below that says: $$adminemail = $FORM{adminemail} should say: $adminemail = $FORM{adminemail} Thanks! ... -- "The world's as ugly as sin, and almost...