Re: MySQL and Perl...

2001-11-19 Thread Konstantin Voznjuk
Olav Rogall wrote: > > Hallo List, > > Am Saturday, November 17, 2001 um 3:33:52 AM schriebst Du: > > >> > Does anyone know of a good online resource for learning how MySQL works, > >> > specifically how Perl cooperates with it? > >> > thanx... > >> > >> you can't get much better than the ori

MS Access to MySql conversion.

2001-11-19 Thread Grierson, Garry (UK07)
I've written a Perl CGI front end for an existing Access DB system and have been looking at the possibility of changing this to MySql the Perl changes seem to be minimal but I'm having trouble trying to export the Access tables to MySql. I know this isn't exactly a 'Perl' problem but I was wonder

testing for special caracters...

2001-11-19 Thread Wagner Garcia Campagner
Hi, I'm trying to test a variable for special caracters... but i'm not having success... I'm doing: if ($var =~ \w) { .. } But it doesn't work. Thanks in advance, Wagner Garcia Campagner -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

web and cookies

2001-11-19 Thread zaka rias
i got a script in my web like this : $a=$ENV{REMOTE_ADDR}' open(infi, ">>iplog.txt">; print infi "$a \n"; close infi; ... another process that script i put in main.html if some users come into my site, that script will catch the user ip and wri

Re: testing for special caracters...

2001-11-19 Thread fliptop
Wagner Garcia Campagner wrote: > > I'm trying to test a variable for special caracters... but i'm not having > success... > > I'm doing: > > if ($var =~ \w) { if ($var =~ /\w/) { -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: MS Access to MySql conversion.

2001-11-19 Thread fliptop
"Grierson, Garry (UK07)" wrote: > > I've written a Perl CGI front end for an existing Access DB system and have > been looking at the possibility of changing this to MySql the Perl changes > seem to be minimal but I'm having trouble trying to export the Access tables > to MySql. > > I know this

Re: web and cookies

2001-11-19 Thread _brian_d_foy
In article <[EMAIL PROTECTED]>, [EMAIL PROTECTED] (Zaka rias) wrote: > if some users come into my site, that script will > catch the user ip and write it to iplog.txt file why not simply look in the access log? it should already have that information. -- brian d foy <[EMAIL PROTECTED]> - Perl

weather

2001-11-19 Thread Nate
just a quick question, im would like write a script that goes and gets a weather forcast, does any one know a site that has plain text weather forcast. or if someone who has done this before could help me out on the best way to go about this..maybe? the only way i could think of doing it wou

Re: weather

2001-11-19 Thread Kevin Meltzer
Hi Nate, Take a look at these modules and see if any will do what you want: http://search.cpan.org/search?mode=module&query=Weather Cheers, Kevin On Mon, Nov 19, 2001 at 01:11:39PM -0800, Nate ([EMAIL PROTECTED]) said something similar to: > just a quick question, > > im would like write a

Re: weather

2001-11-19 Thread Bkwyrm
We use this to turn on or not turn on our sprinklers at home via a serial i/o board: # test weather.com; if we find 'rain' or 'showers' in the forecast for today, # we exit. if (`/usr/local/scripts/GET http://www.weather.com/weather/local/92101|perl -pe 's/<.+?>//g;' |grep -B 1 "Feels Like"|head

RE: weather

2001-11-19 Thread Al Hospers
> im would like write a script that goes and gets a weather forcast, > does any one know a site that has plain text weather forcast. or > if someone who has done this before could help me out on > the best way to go about this..maybe? the only way i could think > of doing it would be with LWP::Sim