Search the web
Sign In
New User? Sign Up
Perl_Official · Perl . CGI . Shell script
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Want to share photos of your group with the world? Add a group photo to Flickr.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 989 - 1018 of 2062   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
989
$db-&gt;selectall_arraref("yourSQLquery"); <br><br>this method prepare,execute the Sqlquery and returns an array reference to each row of result. ...
poszewka
Offline Send Email
Feb 1, 2002
7:01 pm
990
hehe that doesnt help. I need help making a next page link...
doctor_perl
Offline Send Email
Feb 1, 2002
7:07 pm
991
How to check if domain is available <br>and don't use whois?<br><br>Please help ....
poszewka
Offline Send Email
Feb 1, 2002
7:16 pm
992
Goto the all Registars web site and do a domain search. They would normally search their own whois database and internet wide whois database which is what...
doctor_perl
Offline Send Email
Feb 1, 2002
7:27 pm
993
or try nslookup. That will tell you if the domain already exists....
webmaster_bmw
Offline Send Email
Feb 4, 2002
12:55 pm
994
I need little help figuring out how to create next page with broswing mysql database. <br><br>I am trying to create a script that would broswe database with...
doctor_perl
Offline Send Email
Feb 4, 2002
5:15 pm
995
when i do a concatenate on a sting, it seems to put weid characters in my <br>text file <br><br><br>this is what i use:<br><br>$line =~ s/ //g; <br>$line =~...
V_acuum
Offline Send Email
Feb 5, 2002
7:59 pm
996
It may be a line feed (\r). If you want to get rid of everything but numbers and chars, try this:<br><br>$line =~ s/[^a-z0-9]//ig;<br><br>If you want to add in...
rand_mcneely
Offline Send Email
Feb 5, 2002
10:05 pm
997
Does anyone know how to insert a page break into a Excel spreadsheet when using sylk and Perl to create the file? If so, what is the syntax?<br><br>Thanks!...
morris101675
Offline Send Email
Feb 6, 2002
3:41 pm
998
Hi folks,<br>I need a perl module(s) that convert xml documetn to a simple text file (comma seperated or some thing like that) .. Is there and module. I came...
pollali_nagu
Offline Send Email
Feb 11, 2002
3:09 pm
999
That is the one you need to use or use the XML::Simple?<br><br>g@@d Luck......
leesishere
Offline Send Email
Feb 11, 2002
5:14 pm
1000
Is there a way to just check for the content to make sure everything is chars and numbers?...
sillypet_101
Online Now Send Email
Feb 14, 2002
7:48 pm
1001
Hi folks ,<br>Is there a xml parser in perl which accepts schema instead of dtd?...
pollali_nagu
Offline Send Email
Feb 15, 2002
9:38 pm
1002
How can I set and retrieve the cookie(by using the pm module) from the client browser that I can know the client browser preference setting, something like...
chantwdavid
Offline Send Email
Feb 16, 2002
11:59 am
1003
Can anyone tell me how to create a program that will accept an unknown # of values and average them when the user chooses to finish. I have a file if anyone...
fantasygirl73
Offline Send Email
Feb 16, 2002
6:45 pm
1004
Here's my problem. I own the Phoenix Stories domain (<a href=http://www.phoenixstories.org/ target=new>http://www.phoenixstories.org/</a>) which is part of the...
raedyke
Offline Send Email
Feb 16, 2002
10:58 pm
1005
Send in your resumes immediately for Perl openings at Hyderabad.<br><br>Regards<br><br>Revathy<br>Chennai...
revadi
Offline Send Email
Feb 18, 2002
6:59 am
1006
First of all, you need to determine if your host server supports Perl, cgi and mySQL.<br><br>Installing the scripts is as simple as uploading them to your ...
webmaster_bmw
Offline Send Email
Feb 18, 2002
12:29 pm
1007
&gt;Send in your resumes immediately for Perl openings at Hyderabad.<br>&gt;<br>&gt;Regards<br>&gt;<br>&gt;Revathy<br>&gt;Chennai ...
webmaster_bmw
Offline Send Email
Feb 18, 2002
12:31 pm
1008
yea, if your server has Perl/cgi/and mySQL, ask the people who sent you the script if they had to do any manual editting of the files. If they did, ask what...
benkmann
Offline Send Email
Feb 20, 2002
1:12 am
1009
I am trying to create a subroutine that access the client cookie reads past sites and adds some information... can someone turn me onto a simple script that ...
desertwhitethorn
desertwhitet...
Offline Send Email
Feb 20, 2002
9:22 pm
1010
However you do it, you will only be able to read cookies that your site has placed on the client's machine.<br><br>Anyway, for a start, try playing around with...
webmaster_bmw
Offline Send Email
Feb 21, 2002
1:52 pm
1011
Here is a very simple subroutine used to parse cookie data into a Hash:<br><br>sub parseCookies {<br> my %cookie;<br> my $cdata = $ENV{'HTTP_COOKIE'};<br> my...
The_Foundationer
The_Foundati...
Offline Send Email
Feb 21, 2002
9:08 pm
1012
Is there anyway I can automate the download of a remote file in perl? Such as the to simulate the following:<br>cp some_remote_http_file ...
conundramatic
Offline Send Email
Feb 22, 2002
7:07 pm
1013
Hi,<br>I am using XML::Parser module to parse a file and I am getting this error on running the program:<br><br>syntax error at xmltest.pl line 67, near "#...
pollali_nagu
Offline Send Email
Feb 22, 2002
7:17 pm
1014
Interestingly I get the same error even if I remove the comments before print....
pollali_nagu
Offline Send Email
Feb 22, 2002
7:18 pm
1015
The easiest way it to use IO::Socket to make an INET connection to the remote server, then send an HTTP GET to get the file, then just put the output from the...
The_Foundationer
The_Foundati...
Offline Send Email
Feb 22, 2002
8:04 pm
1016
I am trying to solve how do I edit a text file that is constantly increasing in size (This is a log file ). If I open that file and save it after N time, I...
cyberdj143
Offline Send Email
Feb 26, 2002
7:52 pm
1017
Hi there.<br><br>I'm trying to make a global hash in a use strict Perl program for a school assignment, and I declared a hash outside of any ...
Ubercat
Offline Send Email
Feb 27, 2002
6:58 pm
1018
hi all...<br>i want to redirect my email account to a perl program and store the mails in a file. i think the method uses STDIN or something like that (i ...
kaan_e
Offline Send Email
Feb 28, 2002
7:01 pm
Messages 989 - 1018 of 2062   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help