Hi all, here is what I have already done, followed by what I need to do, and I hope someone here can/will help.. At one point in my application, the user wants...
hi people i have a small problem.... i would like to know how to create 2 dimensional arrays in perl...i'm not able to find this in any of the perl books..... ...
... You don't. What you can do is to create an array, the elements of which are references to other arrays. Look at the "perlref" man page, especially the part...
Hi, I'm writing a perl script that would basically do a query and send the results through email. This part shows the result for me... I've omitted stuff like ...
According to the documentation of MIME::Lite: <doc> Data Alternative to "Path" or "FH". The actual message data. This may be a scalar or a ref to an array of...
Hi everyone, I have a serious problem with my cgi file. For days I've been trying to make it work. Always the same error message: Premature end of script...
Hi Santhi, I downloaded the Sybase Module in the CPAN archives... I got this file sybperl-2.17.tar.gz I used the following commands to install this module... ...
Hi, I have a Perl 5.6.1 running on a Linux box. I downloaded the sybperl 2.171 module from http://www.peppler.org/downloads/ Then I copied this file to this...
Start writing some small programs. Then bug us when the problems get too big. tOM On 1 Oct 2004 at 16:06, ... -- Quidquid latine dictum sit altum viditur -- ...
I'm just starting to use Perl, and am writing my 1st email program using smtp. My isp requires a port other than 25, and I don't know how to specify that. They...
Got this working - to specify outgoing port, add colon port number to smtp server address: $smtp = Net::SMTP->new("smtp.cs.com:587",Debug =>1); -- Ralph Alcorn...
I am trying to upload a file from a system which is behind firewall to a live server. Its connecting but its not copying / uploading the files. When ever i run...
hi friends my name is ananth and i have joined new to this group. i have trouble in installing the AdminMisc module in my perl. can any one help me out plz. ...
hi guys and gurls i got some question with making connection with SMSC gateway is any one here can help me out [or good web] on sending MT and Receiving MO...
We are looking for Perl Professionals for an immediate project requirement . Senior Software Engineers /Software Engineers - Shell, Perl, Sybase - 2+ years...
I'm trying to determine if the following system function can be placed in an array or scalar variable instead of redirecting it to a file because I can't...
Hi All I am new to perl. I have written mail parser in perl which will read the mails and detach the attachments into a folder. After this, i check whether the...
BigInt, sin() help or advice? I'm using my PC to collect some data from an ADC card. I read the 16 bit ADC value, then read the 64-bit value from the PC's...
On Tue, 26 Oct 2004 09:09:05 -0000, sridhar_kuvalai ... What shell are you using? Try enclosing the filenames with quotes (""). HTH. -- http://www.bloodpet.tk/...
I am creating a website using HTML and Perl with a MySQL back-end and I need to create a form that is easily editable by a non technical person that can be...
Tried assigning the command to a scalar variable and it does not work too well with the system function. $uname = "uname -r"; $var = `ssh servername $uname`; ...
... This executes the ssh command and places its stdout into $var ... This executes the stdout of the ssh command - certainly not what you wanted to do. ... ...
I wanna get information from a site which contain frames and dynamic content(jsp).I used lwp module but i can get only source code.The code i wrote is below. ...