Re: Check url for form submission

2003-03-11 Thread Fred Sahakian
I may be wrong, but some browser have problems giving referers properly causing your visitor not to be able use your CGI. >>> "Rob Dixon" <[EMAIL PROTECTED]> 03/10/03 06:52AM >>> Colin Johnstone wrote: > Gidday All, > > I have found this subroutine in someone else's program I need to > modify i

Re: Max Len for string in perl???

2003-03-04 Thread Fred Sahakian
I think I read the other day that it was unlimited, but I could be wrong (might have been PHP). Just keep it as short as possible. >>> "Luinrandir Hernsen" <[EMAIL PROTECTED]> 03/04/03 05:43AM >>> Hallo What is the maximum number of charecters in a string? $A=123456789 Lou -- To unsub

Fixed length variable

2003-02-11 Thread Fred Sahakian
I have data that prints to a flat file database. The data can sometimes be 1, 2, 3, or 4 characters in length. Id like to have it print a fixed length (6 characters) into the database, like this: xyz|fred |xyz instead of xyz|fred|xyz Is there a simple solution? I was going to count

Barcodes

2003-02-04 Thread Fred Sahakian
Does anyone know of any modules that will display Barcodes? I know about Barcodemill.com already but Im looking for something affordable or free. Ive played with the popular barcode.pm, but that creates an actaully EPS or PNG file, I just want to display barcodes in an HTML file. thanks! Fre

Set cookie and then redirect

2003-01-09 Thread Fred Sahakian
Id like to set a cookie in Perl and then redirect to another URL. Ive tried the below code, it will set the cookie but then the browser hangs, is it because it is 2 requests going to the header at the same time, or possibly not enought time for the cookie to be set? print "Set-cookie: value=bob;";

Re: Code bar generator

2002-12-10 Thread Fred Sahakian
This one is good, Ive played with it before and there are no modules to install: http://www.barcodemill.com/ >>> Cleiton Luiz Siqueira <[EMAIL PROTECTED]> 12/10/02 09:56AM >>> Dear, I'm looking for code bar generator in perl. Either someone knows where can I find one or sending me a example? T

Re: Code bar generator

2002-12-10 Thread Fred Sahakian
http://www.fairfieldcomputers.com/barcode/docs.html Never used it though >>> Cleiton Luiz Siqueira <[EMAIL PROTECTED]> 12/10/02 09:56AM >>> Dear, I'm looking for code bar generator in perl. Either someone knows where can I find one or sending me a example? Thanks in advance, -- Cleiton Luiz

Re: Strict and variables

2002-11-27 Thread Fred Sahakian
Im able to get my script running under strict; now, but I keep seeing this new error: "Use of uninitialized value in concatenation (.) or string at volunteer.cgi line 333" What does this mean? Line 333 is in the middle of a print command with a bunch of HTML in it. Any ideas?

Re: Strict and variables

2002-11-27 Thread Fred Sahakian
that was it, thanks to all! >>> "Jenda Krynicky" <[EMAIL PROTECTED]> 11/27/02 11:20AM >>> From: "Fred Sahakian" <[EMAIL PROTECTED]> > Ok, I was able to get rid of all those error but now the CGI is not > picking up the data from the form.

Re: Strict and variables

2002-11-27 Thread Fred Sahakian
11/26/02 04:58PM >>> On Tue, Nov 26, 2002 at 04:40:14PM -0500, Fred Sahakian wrote: > Hello, > > Im working a program and trying to get the pragma 'strict' to work. I > cant define a variable though, Im stuck, any ideas? > > my $changeaddress = $FORM{'ch

RE: Strict and variables

2002-11-26 Thread Fred Sahakian
; 11/26/02 04:52PM >>> Is that the first time that you are using $FORM in your script? -----Original Message- From: Fred Sahakian [mailto:[EMAIL PROTECTED]] Sent: Tuesday, November 26, 2002 1:40 PM To: [EMAIL PROTECTED] Subject: Strict and variables Hello, Im working a program and tr

Strict and variables

2002-11-26 Thread Fred Sahakian
Hello, Im working a program and trying to get the pragma 'strict' to work. I cant define a variable though, Im stuck, any ideas? my $changeaddress = $FORM{'changeaddress'}; I keep getting an error on the $FORM Using "my $FORM{'changeaddress'}" doesnt work. what is the correct way to handle

Firewall

2002-04-17 Thread Fred Sahakian
Anyone know of a perl script that can determine if a website is actually behind a firewall? thanks!

database to mail

2001-12-24 Thread Fred Sahakian
Hi folks, So I have my mail program printing an e-mail based on info that is in a pipe delimited database. One of the arrays contains HTML paragraph symbols ( ) which I do not want to appear in the e-mail that is sent out. Any ideas? -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additi