Hi Teresa,
Can include me also in your list.
Rajeev Rumale
- Original Message -
From: "Bradley M. Handy" <[EMAIL PROTECTED]>
To: "Teresa Raymond" <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]>
Sent: Thursday, September 20, 2001 7:47 PM
Subject: RE: Volunteer Project
> Send me the details o
I need to write a Perl program to access a SSL
website, login and scan the content of the first HTML
page.
Anyone has a sample that I can use as a template ?
Thank you very much in advance.
__
Terrorist Attacks on U.S. - How can you help?
Donate
> -Original Message-
> From: "Stephan Tinnemeyer"<[EMAIL PROTECTED]>
> To: [EMAIL PROTECTED]
> Date: Thu Sep 20 06:22:29 PDT 2001
> Subject: structure of scripts (newbie Q)
>
> >I hope I did not overread this in the FAQ:
> >
> >In some tutorials I found the recommendation to put the code
One of the reasons I have learned is that you're able to maintain a better flow of
control. With your logic defined at the top of the program, readability becomes
easier. You define what it is you want the app to accomplish. (The meat) and then you
design your output and user interface funtions
> while () {
> print if /[.?]$/;
> }
> __DATA__
> This is a test.
> Is this another test?
> This doesn't print!
That character class should have been "[.,?]", since a comma was apparently desired.
Also, the dot, comma, and question mark do not need to be escaped i
> -Original Message-
> From: David Draley [mailto:[EMAIL PROTECTED]]
> Sent: September 20, 2001 12:35
> To: [EMAIL PROTECTED]
> Subject: reg exp
>
> hello -
>
> I am trying to search a for any sentence that ends in "." or "?" I
> want to only print those sentences that end with "." or
NAME
beginners-faq - FAQ for the beginners-cgi mailing list
1 - Administriva
1.1 - I'm not subscribed - how do I subscribe?
Send mail to <[EMAIL PROTECTED]>
You can also specify your subscription email address by sending email to
(assuming [EMAIL PROTECTED] is your email addr
thanks.
it seemed to like the [] better.
while ()
{
print "$_" if /[\.\,\?]$/;
}
close(FILE);
>From: "Moon, John" <[EMAIL PROTECTED]>
>To: 'David Draley' <[EMAIL PROTECTED]>
>CC: "'[EMAIL PROTECTED]'" <[EMAIL PROTECTED]>
>Subject: RE: reg exp
Try
open (FILE, "$file") or die 'Open failed'; # where $file = 'some path
and/or file name'
while () {
print "$_" if /\.\?$/; # the only the last character of the
line is a <.,?> !
}
hope this give you some ideas ...
-Original Message-
From: David Draley [m
hello -
I am trying to search a for any sentence that ends in "." or "?" I
want to only print those sentences that end with "." or "?" I am having
trouble with the reg expression syntax...
--
while ()
{
$file=;
if(/\.\?$/){
print "$only_sentences_that_end
My preference is to have subroutine prototypes first, commented to explain
their purpose and mode of use. The subroutine declarations can be hived off
to a separate file, which is 'included'. The main body of the code can then
be presented. (All of this is assuming there is no need to create a
fun
I have some time free: Can you give an idea of what is wanted.
- Roger -
- Original Message -
From: "Mark Bergeron" <[EMAIL PROTECTED]>
To: "Gary Stainburn" <[EMAIL PROTECTED]>; "Bradley M. Handy"
<[EMAIL PROTECTED]>; "Teresa Raymond"
<[EMAIL PROTECTED]>; <[EMAIL PROTECTED]>
Sent: Thursd
All,
I want to load a HTML file as a include in all my files and I want to pass
parameters to this file (like query string) so that this file's Javascript
code can use these paraemeters. Can I do this using HTML::TEMPLATE or SSI? I
know that we can simply include a file but is there a capability
That's simple:
Use 'eq' instead of '=='!
Stephan
--
Dipl.-Chem. Stephan Tinnemeyer
Lindenallee 20
24105 Kiel
Germany
--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
"==" is a numeric operator ...
Try "eq"
Hope this helps ...
-Original Message-
From: Wagner [mailto:[EMAIL PROTECTED]]
Sent: September 20, 2001 10:18
To: [EMAIL PROTECTED]
Subject: aanother simple question
Hi,
I have another simple question:
In my script i have a variable $host that
Use 'eq' for string comparisons and '==' for numerical --
- Dwalu
.peace
--
I am an important person in this world -
Now is the most important time in my life -
My mistakes are my best teachers -
So I will be fearless.
- Student Cree
Hi,
I have another simple question:
In my script i have a variable $host that is a string... I'm trying to do a
conditional like this:
if ($host == 'access_1') {
$host1 = 'ACESSO 1' ;}
elsif ($host == 'access_2') {
$host1 = 'ACESSO 2' ;}
The problem is that $host1 aways get the first valur
Give me an example of what you guys need, I'll look at it for you. I couldn't give you
a deadline or timeframe right nowe though.
Mark Bergeron'
-Original Message-
From: "Gary Stainburn"<[EMAIL PROTECTED]>
To: "Bradley M. Handy"<[EMAIL PROTECTED]>, "Teresa
Raymond"<[EMAIL PROTECTED]>,
I hope I did not overread this in the FAQ:
In some tutorials I found the recommendation to put the code for
subroutines at the end of a script (i. e. after calling them) but it was
never explained why I should do so. I only see disadvantages:
1. In my simple mind this would only make the interpr
Hi all,
same here - interested but busy.
Is this a big project?
Is it a project that can be shared across a team?
Is it a project that newbie's could get involved in?
Post us some details and we'll have a look.
Gary
On Thursday 20 September 2001 12:47 pm, Bradley M. Handy wrote:
> Send me the
Send me the details of the project and I'll look it over. Right now I'm
pretty busy, but I've wanted to work on a volunteer for a while now.
Bradley M. Handy
Senior Programmer/Owner
Jack-of-all-trades Programming Services
--www.jack-of-all-trades.net
--mailto:[EMAIL PROTECTED]
> -Original M
Here's the link to Stein's user_manage program,
http://stein.cshl.org/~lstein/user_manage/
Perhaps you can get some pointers from that script, it has a web based and
terminal based Interface thing.
justin.
http://skazat.com
> The problem isn't setuid Perl it's that suid forces taintmode on. R
22 matches
Mail list logo