Hi all, have some codes that i can't figure out :- $count = 0; %in = ( "a1","1","b1","2","a2","3","b2","4" ); while ($count <= 2) { ++$count; print...
40
webprogramming
info@...
Oct 8, 1998 9:03 pm
I need to search and replace a certain word in a text file from a webform submission. The user would enter a word (in this case a domain name) in an input box...
41
Jeff Boes
jboes@...
Oct 9, 1998 12:35 am
On Thu, 08 Oct 1998 14:02:29 -0700, webprogramming <info@...> ... Something like this: use CGI ':standard'; $word = param('word'); ...
42
Jeff Boes
jboes@...
Dec 9, 1998 9:35 pm
Here's a resource that may help some of you: CGI Programming 101 (online course) http://www.cgi101.com/class/ -- Jeffery Boes <jboes@...> Mur Consulting:...
43
igarcia@...
Jan 14, 1999 3:40 pm
Hello! I am thinking about installing a HTTP server in a PC (with Windows Workstation NT 4.0) that it is not connected to the Internet (to test scripts)....
44
Alexander, Willis, JR...
willis@...
Mar 2, 1999 8:31 pm
Hi, I am looking for a perl tutorial that caters to beginners. I have subscribed to several email lists,but they seem to be for more advanced students. Any...
45
Terry Lee
t.lee@...
Mar 2, 1999 8:32 pm
how can I be added to this mail list... my email address is t.lee@... ... eGroup home: http://www.eGroups.com/list/perl-beginner Free Web-based...
46
Alex
mymail@...
Mar 2, 1999 8:32 pm
subscribe ... eGroup home: http://www.eGroups.com/list/perl-beginner Free Web-based e-mail groups by eGroups.com...
47
(no author) ...
Mar 2, 1999 8:33 pm
... eGroup home: http://www.eGroups.com/list/perl-beginner Free Web-based e-mail groups by eGroups.com...
48
(no author) ...
Mar 2, 1999 8:33 pm
... eGroup home: http://www.eGroups.com/list/perl-beginner Free Web-based e-mail groups by eGroups.com...
49
(no author) ...
Mar 2, 1999 8:33 pm
... eGroup home: http://www.eGroups.com/list/perl-beginner Free Web-based e-mail groups by eGroups.com...
50
(no author) ...
Mar 2, 1999 8:33 pm
... eGroup home: http://www.eGroups.com/list/perl-beginner Free Web-based e-mail groups by eGroups.com...
51
(no author) ...
Mar 2, 1999 8:40 pm
... eGroup home: http://www.eGroups.com/list/perl-beginner Free Web-based e-mail groups by eGroups.com...
52
Smith, Eric - WPAFB/Y...
Eric.Smith@...
Mar 2, 1999 9:12 pm
Robert Pepper has a nice one... http://www.netcat.co.uk/rob/perl/win32perltut.html ... eGroup home: http://www.eGroups.com/list/perl-beginner Free Web-based...
54
David Nobles
DNobles@...
Mar 3, 1999 2:17 am
If you don't mind putting out a little cash you could try www.waite.com/ezone After buying the book you can run through it one of three ways - 1) read the book...
55
Carmelo Rengifo A.
crengifo@...
Mar 3, 1999 3:12 am
Hello! It is the address of a Page with information about FAQs and "Tables of Contents" about some of the Best Tutorials on the Web. ...
57
madstone@...
Mar 6, 1999 2:37 am
Jeffery wrote a few months ago: Here's a resource that may help some of you: CGI Programming 101 (online course) http://www.cgi101.com/class/ -- Jeffery Boes...
58
dalekh@...
Jun 10, 1999 8:37 pm
I have a variable in a config file that I would like to parse and create a list from the space delimited values. Here is the format: elist = "younme\@work.com...
59
Jeff Boes
jboes@...
Jun 11, 1999 1:05 am
... A regexpr? Heck, you are using a cannon to kill a flea. $elist = "younme\@work.com shenhim\@work.com itnher\@work.com"; @elistList = split(/\s+/, $elist); ...
60
dalekh@...
Jun 11, 1999 8:45 pm
I would like to use a list of values created from parsing a quoted list and display it in a browser using HTML. I also want the user to be able select a item...
61
Jeff Boes
jboes@...
Jun 12, 1999 2:53 am
use CGI; print header, start_html, start_form, scrolling_list(-name=>'network', -multiple=>'true', -values=>['ethernet','token16','token4'], ...
62
dalekh@...
Jun 12, 1999 5:07 pm
what about an array like - @array or $list <001001beb47e$b21126a0$204fbbd-@mishra> wrote: Original Article:...
63
Jeff Boes
jboes@...
Jun 13, 1999 12:27 am
You can substitute an array reference for the [...] below, just put in '\@array'. Dunno what you mean by $list, did you mean to type %list? If so, you can use...
64
dave@...
Jun 20, 1999 3:17 pm
<7ju452$lfa-@egroups.com> wrote: Original Article: http://www.egroups.com/group/perl-beginner/?start=62 ... Something like this perhaps? use CGI; my %list =...
65
Tomas Lauridsen
trol@...
Jun 20, 1999 6:29 pm
On 20-Jun-99 dave@... wrote: If i paste this program to a file and run it, then I just get: No comma allowed after filehandle at ./form.pl line 9. why...
66
Greg Webster
greg@...
Jun 20, 1999 6:50 pm
Hiya folks, Just a reminder from your unseen moderator that in order to post to the list, you really should join it. I've had a couple of people recently ...
67
sheldon.smith@...
Jul 9, 1999 3:57 am
<dbaa10208a5fd211b57b0008c7281246324de-@nj7460exch006u> wrote: original article:http://www.egroups.com/group/perl-beginner/?start=44 ... In another mailing...
68
dave@...
Jul 15, 1999 1:28 pm
<xfmail.990620200020.tro-@...> wrote: original article:http://www.egroups.com/group/perl-beginner/?start=65 ... Sorry about that. The corrected code is...
69
news@...
Aug 3, 1999 1:47 pm
Hello, I am very new to Perl. I have wrote a simple program - "testbuf.pl" (code attached below), just to see how "safe" is perl in a very busy server...
70
Greg Thompson
greg@...
Aug 6, 1999 5:32 am
Hi list! Can someone please help me write a quick little perl program that takes info from a form submission (a paragraph that someone submits, plus their name...