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
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
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]
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
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]
"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
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
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
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
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
> 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
11 matches
Mail list logo