1,633 Topics

Member Avatar for
Member Avatar for reno02

I have a script that needs to have the email acknowledgment sent to the email that the customer gives. However, when doing it, it doesn't work when I test it. Can anyone view this and let me know if I am mising something. I have changed a few things to …

Member Avatar for reno02
0
122
Member Avatar for Narayanank

when i ran a perl script on xampp i got this error [B]The server encountered an internal error and was unable to complete your request. Error message: Premature end of script headers: sai2.pl If you think this is a server error, please contact the webmaster. [/B]

Member Avatar for haonamdaica
0
96
Member Avatar for mruane

I just downloaded ActivePerl, hoping it was some kind of IDE for perl. I run windows XP service pack 3 on this box. My Linux Box has perl already installed, but I want to use perl on my windows box as well. I know nothing about perl, so do I …

Member Avatar for orko
0
133
Member Avatar for annie_singh

Hello, I am a beginner in perl. I am stuck with a problem. I have an array which looks like this 6.324 32.707 50.379 5.197 32.618 46.826 4.020 36.132 46.259 7.131 38.210 45.919 6.719 38.935 42.270 2.986 39.221 41.892 -0.269 37.184 41.565 `Inline Code Example Here` These are the X, …

Member Avatar for KevinADC
0
853
Member Avatar for it2051229

Hello, i'm interested on learning the PERL language and I do not have any idea on the installation and what really PERL does although i've made research but still confused. Is PERL for the WEB like PHP? or it is like C for creating executable applications?.. I have E-books of …

Member Avatar for KevinADC
0
175
Member Avatar for reno02

Hello: I am a newbie and need help with a celsius to fahrenheit script. If anyone can help, it would be greatly appreciated. Right now, it comes back with the error Here is my HTML code: <!xxxx.html> <HTML> <HEAD><TITLE>XXXXX Temperature Conversion</TITLE></HEAD> <BODY> <H3>Use this form to convert a temperature.</H3><BR /> …

Member Avatar for KevinADC
0
97
Member Avatar for arunprakash647

Hi i am new to perl. i just got an error when i exceuted the perl script which is as folows: Day '' out of range 1...31 in C:\..... in line 87 and the code around line 87 is: sub get_unix_timestamp { my ($date,$time) = @_; my $mday = substr($date,0,2); …

Member Avatar for KevinADC
0
682
Member Avatar for consultant1027

I've got a Perl program that is returning an incomplete result set. I can output the mySQL call that Perl is executing. In the perl program it gets less records back than if I copy and paste the statement into phpMyAdmin and execute it. Statement Example: SELECT brand,name,collection,dept FROM models2 …

Member Avatar for consultant1027
0
138
Member Avatar for samuelo

Hi i did a shell script. This script is configuration for voip gw's. But i dont upload this output file ( example = ****.ini ) from gw with telnet and commands. how do i need ? This script must be telnet and put confguration mean must read my output file …

Member Avatar for KevinADC
0
92
Member Avatar for it2051229

I'm new in perl although i'm an experienced programmer on the c language and its successors. I learned that perl borrowed some concepts in C so i bothered learning it. i'm trying to solve this palindrome thing. In C we have the isalpha() function which PERL doesn't have. Is there …

Member Avatar for KevinADC
0
56
Member Avatar for talk2mishal

Hi, As i m newbie for the Perl With Html Button. The scenario is like this: [list]I have HTML button in the perl Script. [/list] [list]I have to get the Data of Enable checkbox Data using the button click event in perl [/list] [list]And I have to copy/cut that Enable …

Member Avatar for KevinADC
0
95
Member Avatar for aanya

Iam new to perl. This is my problem. I have calculated the distance using the formula my $distance = sqrt(($x2 - $x1)**2 + ($y2 - $y1)**2 + ($z2 - $z1)**2); and the value of $distance looks like this: 3.72851967944384 5.83210433720111 7.12922562414741 10.2322964186931 11.2073015931579 11.882666956538 14.4465118281196 16.0581479006765 17.2278339903773 Now I have …

Member Avatar for aanya
0
131
Member Avatar for joecheriross

Is there any method to handle minimize event in Tk when minimize button is being pressed, like we handle close with onDestroy(). Regards, Joe.

Member Avatar for joecheriross
0
33
Member Avatar for perltoday

hi, Is it possible to read 2 or more files and getting data out of them simultaneously? can I know the perl format for that

Member Avatar for KevinADC
0
118
Member Avatar for PPP1
Member Avatar for perltoday

hi, Is it possible to generate an output file and print the output to it within the program? So that the program automatically generates a file, where in it prints the output to it. Is it possible for the program to generate two output files and print respective results to …

Member Avatar for KevinADC
0
47
Member Avatar for artemis_f

Hello, I don't know any Perl but I do know Java. I am studying about Push down automatas at the moment and wanted to make a simulator for myself. I have found some code in Perl that does it but I do not know how I can go about using …

Member Avatar for KevinADC
0
471
Member Avatar for annie_singh

Hello, I have a file with the data as shown below: ATOM 2 CA ARG A 1 6.324 32.707 50.379 ATOM 13 CA THR A 2 5.197 32.618 46.826 ATOM 20 CA ASP A 3 4.020 36.132 46.259 ATOM 28 CA CYS A 4 7.131 38.210 45.919 I am a …

Member Avatar for KevinADC
0
515
Member Avatar for annie_singh

Hello, I am new to perl, but I would like write a perl script that can convert xyz cordinates from a pdb file to distances using the formula: distance = SQRT[(X1-X2)^2 + (Y1-Y2)^2 + (Z1-Z2)^2] eg: line 1 xyz to line2 xyz line 1 xyz to line3 xyz line 1 …

Member Avatar for Salem
0
180
Member Avatar for koteswarvijay

Hi All, I am connecting to Unix host from Windows and using SFTP connection. I am able to connect and do put & get. But I need to do even more. I want to write a function to which I will pass the command and that commands needs to be …

Member Avatar for KevinADC
0
119
Member Avatar for viktorijakup

Hi !!! This script create folder. I need what this script create and open created folder. What I must add in this script...??! [CODE] @rem = '--*-Perl-*-- @echo off if "%OS%" == "Windows_NT" goto WinNT perl -x -S "%0" %1 %2 %3 %4 %5 %6 %7 %8 %9 goto endofperl …

Member Avatar for KevinADC
0
147
Member Avatar for klactose

Hello, I am writing some testing scripts. At the end of each test I may have to return my environment back to it's default state using various subroutines in various modules. I realize that using the END block I can run these subroutines, however I have hundreds of these test …

Member Avatar for klactose
0
119
Member Avatar for 115cruiser

Where should i look for this answer: Hi, If you don't know the answer if you could please point me in the right direction it would be appreciated. looking to search for more then 1 term at a time with user interaction as shown in the script below. I have …

Member Avatar for 115cruiser
0
99
Member Avatar for jyotiu

Hi all, I have a html file, i need to extract name , address and phone no. from it. now name is in <span class="name"></span> add is in <span class="list_address"></span> phone is in <span style="display:none" ID="phoneVal11"></span> I have used following code for getting name,add and phone: [code] <?php function get_name($file){ …

Member Avatar for KevinADC
0
155
Member Avatar for SS7

[COLOR="Green"]like ::: this is for perl script sample.pl a.exe xx xx xx where the last two xxs are the credentials of the exe and 1st xx is the IP of the machine the exe is present[/COLOR]

Member Avatar for Salem
0
40
Member Avatar for yair7190

hello everyone, i have a script in which i enter a log file into an array and then i go line by line to search for a line containing "free disk space". once the line is found i want to check if the value is greater than 75. the line …

Member Avatar for yair7190
0
100
Member Avatar for sobam15

I have to create and run a program that can take any column and row value and print the corresponding number. I think I understand how to do this manually: 1. Initialize row and column ($i and $j). 2. Make sure row/column combination exists, row must be larger or equal …

0
50
Member Avatar for yair7190

hi everyone! i'm kind of new to perl and having some problems with a script i wrote. hope i came to the wright place :) here's my problem: i wrote a script that goes through each line in a file (i loaded the file into an array "RevLogFile") and when …

Member Avatar for yair7190
0
135
Member Avatar for navsaug

Hi - Please help me with the following. I have to a parse a log file and here is the part of the log file which is occurs repetitively. [Text1] [Text2] [Text3] [Text4] [Text5] [Text6] [Text7] [ ===== PATTERN1 ======= Text8_line1: value1 Text8_line2: value2 Text8_line3: value3 Text8_line4: value4 . . …

Member Avatar for katharnakh
0
79
Member Avatar for sobam15

Hi, I am a college student who recently signed up for a Computer Science course despite being an utter mess when it comes to math or science (as an aspiring writer, I have a way with words instead). I needed the extra 3 credits and didn't really have any other …

Member Avatar for vkumar42
0
84

The End.