Using Win32::ODBC

2001-10-09 Thread Greg . Froese
I'm successfully connecting to a Pervasive 7 database with my PERL program when running from the command line. I try to run the program in my webbrowser and I get the following error. Error connecting to MO Error: [802] [] "[Pervasive Software][ODBC Interface][Pervasive Software SQL Engine]Gen

RE: Using Win32::ODBC

2001-10-09 Thread Greg . Froese
Yes, I am using IIS as my webserver. -Original Message- What is your web-server? IIS?? - Rex -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Subject: Using Win32::ODBC I'm successfully connecting to a Pervasive 7 database with my PERL program when running

Parsing HTTP links

2001-10-16 Thread Greg . Froese
I need to parse out all http links stored in a local file. How would I go about doing this? which modules would I need to use? TIA Greg

HTML::Parser

2001-10-17 Thread Greg . Froese
Does anybody have the hstrip example mentioned in the HTML::Parser documenation that shows you how to stip out specific tags from an HTML file. I can't find the example, maybe I'm missing something really obvious. Thanks Greg

CGI

2001-10-04 Thread Greg . Froese
I'm not really clear on how PERL works when writing HTML. when writing to a console, you simply use \n to move to the next line but using the same code in a browser I get everything on the same line. is there a way that when writing to HTML, the \n gets converted to or do you have to explicitl

Re: Parsing HTTP links

2001-10-18 Thread Greg . Froese
Hey guys, thanks for all the help with this. I actually did mean HTML Links as I am looking to parse out specific links from an HTML file. I'm not only concerned with "HTTP" link () but also other HTML flags. Right now I'm using HTML::SimpleLinkExtor but I'm not sure that gives me exactly

Faking form variables

2001-10-25 Thread Greg . Froese
I'm using the following snippet of code to put all form data passed into a hash table. $form_data_size = $ENV{'CONTENT_LENGTH'}; read (STDIN, $form_data, $form_data_size); @info_returned = split (/&/,$form_data); foreach $keyvalue (@info_returned) { ($key, $value) = split(/=/, $keyvalue);

Re: Faking form variables

2001-10-26 Thread Greg . Froese
Curtis, What is the syntax for passing these values through the url? Greg Curtis Poe <[EMAIL PROTECTED]> 10/25/2001 01:44 PM Please respond to poec To: [EMAIL PROTECTED], [EMAIL PROTECTED] cc: Subject:Re: Faking form variables --- [EMAIL PROTECTED] w

Re: No such file or directory exists

2001-10-24 Thread Greg . Froese
That was not the problem. The problem was the ^M at the end of each line walter valenti <[EMAIL PROTECTED]> Sent by: [EMAIL PROTECTED] 10/24/2001 09:11 AM To: [EMAIL PROTECTED] cc: [EMAIL PROTECTED], [EMAIL PROTECTED] Subject:Re: No such file or dire

No such file or directory exists

2001-10-24 Thread Greg . Froese
I'm working with my perl scripts in Linux and Windows. my scripts were running fine when I ran them as "perl myscript.pl" but when I tried to execute the perl script using only its name (./myscript.pl) then I would get the message "No such file exists" I searched and searched until I found tha

WWW::Robot

2001-10-10 Thread Greg . Froese
I'm having trouble with the robot thing. I want to write a little program that simple reads an HTML page and produces a list of all the links on that page. I've tried following the documentation with WWW::Robot but I'm not having any luck. Could someone point me in the right direction. thanks