Renaming files on the server

2002-02-07 Thread Troy May
Hello all, My friend (who doesn't English too well yet) has been emailing me asking about a guestbook he made. It sounds like he wants to archive his message files with a certain format and back them up automatically everyday. Here's his last email to me: "i want to store all those message eve

File Upload Problem on IE and Opera

2002-02-07 Thread Elwyn Chow
Hi Everyone, I'm writing a program that allows people to send emails with attachments via a web page. It stores these attachments encoded on the hard disk like they would look in the final text file that gets send. For some reason, IE and Opera isn't reading a value from

Multiple Print "Location:$link";

2002-02-07 Thread Rob
We have an epage server for our customers to use; one of them is a fire department and they would like to have a page setup with check boxes and send the same message to all who have a check beside there name. I've been trying something like the following... if($shawn ne "") { $link = "http:/

To write a script that reads numbers from STDIN and print onSTDOUT.

2002-02-07 Thread Bruce Ambraal
Hi Could any one write some coding for the problem. In perl against Linx could someone help. I want to write a script that reads in four numbers from STDIN and add the first two together, and than adds the second 2 together. The input format is a number on a line.(press enter after every nu

regular expressions

2002-02-07 Thread Octavian Rasnita
Hi all, Do you know where I can find a good free tutorial or manual for the regular expressions in Perl? Thank you. Teddy, My dear email address is [EMAIL PROTECTED] _ Do You Yahoo!? Get your free @yahoo.com address at http://mail.yaho

Re: To write a script that reads numbers from STDIN and print onSTDOUT.

2002-02-07 Thread Brett W. McCoy
On Thu, 7 Feb 2002, Bruce Ambraal wrote: > Could any one write some coding for the problem. > > In perl against Linx could someone help. > > I want to write a script that reads in four numbers from STDIN and add > the first two together, and than adds the second 2 together. > > The input format

multipart/x-mixed-replace and image/gif

2002-02-07 Thread Hytham Shehab
Hi gurus, Am working on a script to generate a sequence of GIFs in an tag, when i run this script from dos, it works OK and generate the appropriate headers, but when running under a web page - hosted by Apache v 1.3 on XP - it doesn't do anything, and i use CGI::Carp(fatalsToBrowser); but it

Re: To write a script that reads numbers from STDIN and print on STDOUT.

2002-02-07 Thread Jeremy Webster
.snip... > > The input format is a number on a line.(press enter after every number) > > I also want to ompare the resulting two numbers with > or < and print > > the largest on STDOUT. > > Is this a homework problem perchance? heh heh heh...I thought exactly the same thing when I read it.

Passing Arrays In CGI

2002-02-07 Thread [EMAIL PROTECTED]
Hi there: I'm currently in a programming situation where my Perl CGI program a) displays an online merchandise database ... b) allows the end-user to select items from that database listing on an HTML page ... c) displays a summary screen ... and then d) sends the info to a secured server soc

Re: regular expressions

2002-02-07 Thread Shawn
- Original Message - From: "Octavian Rasnita" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, February 07, 2002 4:37 PM Subject: regular expressions > Hi all, > Do you know where I can find a good free tutorial or manual for the regular > expressions in Perl? > Thank you. I

Re: Passing Arrays In CGI

2002-02-07 Thread Shawn
- Original Message - From: <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, February 07, 2002 1:25 PM Subject: Passing Arrays In CGI > Hi there: > > I'm currently in a programming situation where my Perl CGI program a) > displays an online merchandise database ... b) allows th

module errors

2002-02-07 Thread GsuLinuX
we wroted a perl code to fetch some information we want from a web site. The code is as below: #!/usr/bin/perl use LWP::Simple; use HTML::Parse; use HTML::FormatText; use CGI; $query = new CGI; my ($html, $ascii); $html = get("http://www.tcmb.gov.tr/kurlar/today.html";); defined $html or die "Sa

Re: module errors

2002-02-07 Thread Brett W. McCoy
On Thu, 7 Feb 2002, GsuLinuX wrote: > we wroted a perl code to fetch some information we want from a web site. The code is >as below: > > #!/usr/bin/perl > use LWP::Simple; > use HTML::Parse; > We have the debug error: > > Can't locate HTML/Parse.pm in @INC(@INC contains: > /usr/lib/perl5/5.6

Re: module errors

2002-02-07 Thread Uwe Voelker
> use HTML::Parse; The module is called HTML::Parser. uwe -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: module errors

2002-02-07 Thread Brett W. McCoy
On Thu, 7 Feb 2002, Uwe Voelker wrote: > > use HTML::Parse; > > > The module is called HTML::Parser. A further investigation via CPAN showed me that HTML::Parse is part of the HTML::Tree bundle and is now actually a deprecated module, according to the readme. -- Brett

Passing a hash through a URL

2002-02-07 Thread Josiah Altschuler
I have a question about passing data through URL's. I'm passing hashes in a CGI script, but sometimes when I click on a link that passes a larger hash, nothing happens. I don't get any message. I'm guessing there is a limit to the amount of data I can pass through a URL? If this is the case, a

RE: Passing a hash through a URL

2002-02-07 Thread Al Hospers
> I have a question about passing data through URL's. I'm > passing hashes in a > CGI script, but sometimes when I click on a link that passes > a larger hash, > nothing happens. I don't get any message. I'm guessing > there is a limit to > the amount of data I can pass through a URL? If this

RE: Passing a hash through a URL

2002-02-07 Thread Josiah Altschuler
Hi. Thanks for the response. I'm passing the hash with an href in this manner. So does this mean that I'm not using get or post? $query = CGI->new({red => [%{$clusArrayHash[$i]}]})->query_string; print pre h6 (" ", a ({ -href => "http://140.247.111.176/cgi-bin/redundancies.pl?red=$quer

Re: module errors

2002-02-07 Thread GsuLinuX
Ok, you have reason, it must be "parser" but after it continues to give some module errors... Can u say me if my method is true, to fetch some information from a web site? thanks funky Istanbul - Original Message - From: "Brett W. McCoy" <[EMAIL PROTECTED]> To: "Uwe Voelker" <[EMAIL PR

RE: Passing a hash through a URL

2002-02-07 Thread Brett W. McCoy
On Thu, 7 Feb 2002, Josiah Altschuler wrote: > Hi. Thanks for the response. I'm passing the hash with an href in this > manner. So does this mean that I'm not using get or post? > > $query = CGI->new({red => [%{$clusArrayHash[$i]}]})->query_string; > print pre h6 (" ", a ({ -href