| Thread | Last Post | Replies |
|
| IO::Socket::INET client hangs on no server on windoze | 31 May 2007 20:24 GMT | 3 |
If there is no server or no connection this hangs for about 20 seconds and then crashes with the following error message. The Timeout seems to make no difference and the 'warn' does not occur. If works file with a good connection to a server.
|
| ScanAlert XSS warnings | 31 May 2007 19:51 GMT | 2 |
there is a script on our site, that receives this warning from the HackSafe scanalerts" ------------------------------------------------------------------------------ " ... The remote web application appears to be vulnerable to cross site
|
| Modules for parsing emails | 31 May 2007 01:58 GMT | 2 |
Since CPAN is pretty huge, I thought I would throw out a request for comments. I need to parse email headers and the body of the email. The emails are supposed to be plain text only but sometimes someone goofs and sends one
|
| Array of Array refs | 30 May 2007 08:20 GMT | 18 |
I am trudging through some DBI, XML, etc.. I had a problem and was baffled by how to get at array elements out of a series of pushed array refs. But, by simplifying the problem, I found that the syntax I used was in error. here is the small sample, already debugged. Hope
|
| if (<FH>) VS while (<FH>) | 30 May 2007 06:44 GMT | 4 |
If (<FH>) ::: if doesn't not fill the $_ variable with contents of files first line automatically. While (<FH>) ::: while do fill the $_ to content of the files first line automatically.
|
| Accessing hash | 29 May 2007 17:59 GMT | 2 |
@hashi = @hash{qw (jeevan, sarika)}; print @hashi; this gives me the values of keys jeevan and sarika.. how does this work ...
|
| Error with Html code | 29 May 2007 14:35 GMT | 4 |
I am not able to trace out why i am getting this error. help regarding this will be appreciated. I am using apache2 & Gentoo linux. . i have a html upload.html <HTML>
|
| accesing a hash of an array of hashes | 29 May 2007 12:27 GMT | 8 |
ive read a load of data in from a CSV file with Text::CSV and ended up with a hash (%hash) where the keys are the column labels. my @headings=split(/,/,$rows[0]) and then
|
| What modules should I use to transfer a video scrip through the net? | 29 May 2007 02:14 GMT | 1 |
I am intended to make a scrip to do this: you could send a video scrip from your PC to a friend through the net. At the same time, the receiver should be able to play the video script.Yet, I don't know how to get Perl to do it? Which types of modules I may need? Should I use
|
| acccesing an hash | 28 May 2007 17:40 GMT | 2 |
my %hash = (jeevan=>'Ingale', Sarika =>'Bere'); my @star = @hash{jeevan, Sarika}; print @star; this prints ingale and bere but when i write
|
| Accessing hash | 28 May 2007 12:29 GMT | 2 |
why is it that when i write my %hash = (jeevan=>'ingale', sarika=>'bere' ); my @arr = @hash{jeevan, sarika}; print @arr;
|
| Net::BGP advise | 27 May 2007 08:40 GMT | 1 |
I sent [most of] the below message to Net::BGP's author a small while ago and haven't yet heard back. I'm hoping someone on the list can help. I'm trying to use Net::BGP to inject a /32 into my iBGP. What is the proper way to send a $peer->update?
|
| Passing multiple mixed arguments to subs | 25 May 2007 20:47 GMT | 7 |
I am passing a reference to a hash ($publisher) and a array with an unknown number of elements (@files). So the call is delete_from_publishers( $publisher, @files ) Currently the beginning of the sub is:-
|
| How to split a large string with repeating delimiters into multiple substrings | 25 May 2007 18:37 GMT | 5 |
I am new to Perl. How can I split the below string and get the multiple web-addresses in a list: (i.e. the strings between <upsl-url> and </upsl-url>
|
| Module question | 24 May 2007 17:57 GMT | 3 |
Is @EXPORT_OK for those items you want to import by "name" and %EXPORT_TAGS for those items you want to group like :all or :select? What is @EXPORT used for then if that is the case above? Robert
|