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...
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...
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 =~...
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...
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!...
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...
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...
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...
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...
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 ...
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...
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 ...
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...
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...
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 "#...
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...
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...
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 ...