RE: Perl for Windows 98

2002-03-19 Thread John Edwards
Off the top of my head, DCOM is Distributed Component Object Model (or is it method??). This, as I understand it, is used to access the OLE stuff in Windows. You may already have the updated DCOM components on your machine. If you don't then the Perl installer warns you I think. Looking back at th

manipulating a BerkeleyDB-database

2002-03-19 Thread peter barth
Hi there, I'm trying to manipulate an EXISTING BerkeleyDB3.2.9 database. Everything is working fine if I implement: unlink $filename and insert some keys,value pairs. If I unlink the filename there are no key,value pairs available any more which existed before, is this normal? My problem

Poll for my site

2002-03-19 Thread GsuLinuX
Hi again from Istanbul:) , I wanna make poll for some datas that we obtain from the users. For this, i know howto insert the datas to my sql database, make an average or something specific but how can i show the results as visual which has become very popular in web sites? thanx Derya

Entire Site Search

2002-03-19 Thread GsuLinuX
Hi from Istanbul, I wan to integrate an "Entire Site Search" and also "Specific Search" for my site. I didn't make a substructure in my site for this. How can i make it? thanx Derya

RE: parsing a domain name out of an email address

2002-03-19 Thread Luna Antonio (Servi-Centro)
Title: RE: parsing a domain name out of an email address I think the following page could help you. -Original Message- From: Rand Cufley [mailto:[EMAIL PROTECTED]] Sent: Friday, March 15, 2002 12:55 PM To: 'Eric Peers'; [EMAIL PROTECTED] Subject: RE: parsing a domain name out of an e

Can someone explain the difference ?

2002-03-19 Thread Kamali Muthukrishnan
Hi : I have the following perl-script , which gives the user ( supposedly a first or second grader) a problem in addition or subtraction by generating random numbers. The random numbers generated are between 1 and 10 for first graders and 10 and 100 for second graders. I am trying to just exe

script was working now doesn't

2002-03-19 Thread Teresa Raymond
The following script was working last night. But now only puts up my error msg. It was putting up the error msg when I tried to run the script via file path (http://www.mariposanet.com/cgi-bin/contactnn.cgi) and continuing to run the rest of the program if not. No longer... Any thoughts?

Re: Can someone explain the difference ?

2002-03-19 Thread Brett W. McCoy
On Tue, 19 Mar 2002, Kamali Muthukrishnan wrote: > I have the following perl-script , which gives the user ( supposedly a > first or second grader) a problem in addition or subtraction by > generating random numbers. The random numbers generated are between 1 > and 10 for first graders and 10 an

Re: Using CGI.pm

2002-03-19 Thread Curtis Poe
--- Octavian Rasnita <[EMAIL PROTECTED]> wrote: > Hi all, > > I have a question about using CGI.pm. > > How it is better? To print directly the html code with > print " ... "; etc. or > > to print using the CGI.pm > print $q-> start_html(...); etc. > Does it work faster in a way or anothe

Re: Can someone explain the difference ?

2002-03-19 Thread Curtis Poe
--- Kamali Muthukrishnan <[EMAIL PROTECTED]> wrote: > Hi : > I have the following perl-script , which gives the user ( supposedly a first or >second grader) a > problem in addition or subtraction by generating random numbers. The random numbers >generated > are between 1 and 10 for first grader

Re: Why doesn't it work?

2002-03-19 Thread Curtis Poe
--- Octavian Rasnita <[EMAIL PROTECTED]> wrote: > Hi all, > > I tried the following line to open another location, but it doesn't work. > > print $screen -> redirect(-uri=>'http://localhost/index.html'); > > It doesn't redirect to another location. It just prints the following: > > Status: 302

Re: Poll for my site

2002-03-19 Thread Henk van Ess
I just uploaded this VERY simpele script, but whatever I try, it doesn't work. I chmod'ed to 644,655,755,555,666 but it didn't run. What am I doing wrong? #!/usr/bin/perl # Fig. 2.1: fig02_01.pl # A first program in Perl print "Welcome to Perl!\n"; # print greeting -- To unsubscribe, e-m

first glimpse of regex

2002-03-19 Thread Matthew Harrison
i need to say something like if $username = "" then ... where "" is literally nothing. i want to match it ONLY if the variable is totally empty. this is my first experience with regex so what should this be? -- Matthew Harrison Internet/Network Services Administrator Peanut-Butter Cheesecake

RE: Poll for my site

2002-03-19 Thread Eric Peers
-Original Message- From: Henk van Ess [mailto:[EMAIL PROTECTED]] Sent: Tuesday, March 19, 2002 2:11 PM To: [EMAIL PROTECTED] Subject: Re: Poll for my site I just uploaded this VERY simpele script, but whatever I try, it doesn't work. I chmod'ed to 644,655,755,555,666 but it didn't run. W

Re: first glimpse of regex

2002-03-19 Thread Brett W. McCoy
On Tue, 19 Mar 2002, Matthew Harrison wrote: > i need to say something like > if $username = "" then ... > > where "" is literally nothing. i want to match it ONLY if the variable is > totally empty. > > this is my first experience with regex so what should this be? if(!$username) { } An e

Re: first glimpse of regex

2002-03-19 Thread Curtis Poe
--- Matthew Harrison <[EMAIL PROTECTED]> wrote: > i need to say something like > if $username = "" then ... > > where "" is literally nothing. i want to match it ONLY if the variable is > totally empty. > > this is my first experience with regex so what should this be? > > -- > Matthew Harris

Re: Poll for my site

2002-03-19 Thread Curtis Poe
--- Henk van Ess <[EMAIL PROTECTED]> wrote: > I just uploaded this VERY simpele script, but whatever I try, it doesn't > work. I chmod'ed to 644,655,755,555,666 but it didn't run. What am I doing > wrong? > > #!/usr/bin/perl > > # Fig. 2.1: fig02_01.pl > > # A first program in Perl > > print "

Re: first glimpse of regex

2002-03-19 Thread Patrick Diffley
One way of doing this: chop ($username); if ($username eq "") { ... } This will at least ensure that a carriage return is not included in the scalar PJD - Original Message - From: "Matthew Harrison" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday,

Re: Poll for my site

2002-03-19 Thread Mark Bergeron
You could run a small img though your while loop and have it place one next to the other (side by side) using your rowcount values. That would be one way. or you could try it with a foreach() as well. Mark -Original Message- From: "GsuLinuX"<[EMAIL PROTECTED]> To: [EMAIL PROTECTED], [E

Re: first glimpse of regex

2002-03-19 Thread Curtis Poe
--- Patrick Diffley <[EMAIL PROTECTED]> wrote: > One way of doing this: > chop ($username); > if ($username eq "") { >... > } > This will at least ensure that a carriage return > is not included in the scalar 'chop' has been so heavily misused that, if I recall correc

Anyone? script was working now doesn't

2002-03-19 Thread Teresa Raymond
>Delivered-To: [EMAIL PROTECTED] >Mailing-List: contact [EMAIL PROTECTED]; run by ezmlm >List-Post: >List-Help: >List-Unsubscribe: >List-Subscribe: >Delivered-To: mailing list [EMAIL PROTECT