Re: lwp-download

2005-02-25 Thread Todd W
"Benjamin Jeeves" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Hi > > I have now used the code below to download the CSV file which it does but the > rest of the script does not get executed e.g. to open the file and read the > data and place it in to it databases are ideas why? >

Re: lwp-download

2005-02-25 Thread Benjamin Jeeves
It is ok now I have it working thank you Ben On Friday 25 February 2005 15:24, Charles K. Clarkson wrote: > Benjamin Jeeves <[EMAIL PROTECTED]> wrote: > : I have a perl program that I have developed that stores some > : numbers in a mysql databases. But I need to make the script go > : to a web si

Re: lwp-download

2005-02-25 Thread Benjamin Jeeves
Hi I have now used the code below to download the CSV file which it does but the rest of the script does not get executed e.g. to open the file and read the data and place it in to it databases are ideas why? use LWP::Simple; $url = "web-server here"; $file = "/home/filename.csv"; $content =

RE: lwp-download

2005-02-25 Thread Charles K. Clarkson
Benjamin Jeeves <[EMAIL PROTECTED]> wrote: : I have a perl program that I have developed that stores some : numbers in a mysql databases. But I need to make the script go : to a web site download a CSV file and the process the data in : that file. I have try lwp-download by using : system("lwp-dow