Perl Trainig

2006-10-16 Thread Theologo Spiro
Title: Perl Trainig Hi, Would anyone know where to perl training in JHB South Africa??   DISCLAIMER: The content of the E-Mail, which may include one or more attachments, is strictly confidential, and is intended solely for the use of the named recipient(s). If you have received this E

RE: perl exe generation!!!

2006-10-16 Thread Toby Stuart
Or you can use the PAR module which is free http://search.cpan.org/~smueller/PAR-0.956/lib/PAR.pm -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf Of [EMAIL PROTECTED] Sent: Tuesday, 17 October 2006 4:03 PM To: ukhas jean Cc: Active Perl Subject: Re: perl exe ge

Re: perl exe generation!!!

2006-10-16 Thread �d�^�d
PDK $149On 9/25/06, ukhas jean <[EMAIL PROTECTED]> wrote: I was trying to create an exe from a .pl script. I was using perl2exe, but it is giving me an error as follows:-   D:\All kachra\c_ka_backup\CCOLON\p2x-8.10-Win32>perl2exe -v segment.pl Perl2Exe V8.10 Copyright (c) 1997-2004 IndigoSTAR So

Re: lwp post method

2006-10-16 Thread �d�^�d
dDwtMzIxMzM4Mjc4O3Q8O2w8aTwxPjs+O2w8dDw7bDxpPDE+O2k8Mz...Maybe it's just a random generated string.Don't care about it.You can : 1.GET this page2.Parse it and get the string via regex3.Apply the string to your POST action On 17 Oct 2006 05:34:54 -, sandeep s kumar <[EMAIL PROTECTED]> wrote: D

lwp post method

2006-10-16 Thread sandeep s kumar
Dear Sir,    I'm trying to create a perl script that will log into a website ,navigate to several pages, and extract data from the site. I'm not much  familiar with this aspect of perl, and have been having some trouble in logging into the second page from the login page.Description: There

RE: linked-lists in perl???

2006-10-16 Thread Lincoln, Adym
The only way I've ever done this is with a custom Module/object I wrote myself. It was also so long ago that I can't remember. But the concept of a double-linked list is simple...You have one object that has additional storage for two pointers, one pointer looking forward in the list, one looking

RE: linked-lists in perl???

2006-10-16 Thread Roode, Eric
Why would you ever want a LL in Perl? Perl's arrays make LLs almost completely irrelevent, except as a learning exercise. And even then they're not that useful, since it's not a data structure that makes sense in Perl. I've been programming Perl for twelve years; I've done websites, library modu