I really hate this, but I've got a complete block on the name of the module, that when invoked, takes all the bytecode from a script and recreates the script....
18215
Paul Archer
tigger@...
Mar 4, 2004 8:59 pm
I hate answering my own post, but since I finally found the answer, I thought I'd save someone else from having to deal with my addled brain. The answer...
18216
ksatpro
Mar 5, 2004 4:43 am
OS1 is an Internet directory that compiles and disseminates Web programming-related resources, Software and electronic image resources. OS1 is geared toward...
18217
shraddha more
its_shraddham
Mar 5, 2004 7:42 am
Hello !!! I want to run .cgi files through web browser. The file test.cgi is stored in cgi-bin folder of apache. Right now, what i am doing is as follows... ...
18218
Ramprasad A Padmanabhan
ramprasad_ap
Mar 5, 2004 8:04 am
... For every file you will have to do a chmod 700 ( or 755 is better ) and adjust the permissions that user apache can run it. The way I do it is create the...
18219
Frederiko dos Santos ...
fredec22
Mar 5, 2004 6:09 pm
Does anybody know the Open Perl. Is it cool? Anybody has references about it? Thanks.,...
18220
shraddha more
its_shraddham
Mar 6, 2004 5:32 am
hello.. Can u tell me what exactly happens when u say $perl test.pl at the backend??? How this command is interpreted???or what are the steps through which...
18221
merlyn@...
merlynstoneh...
Mar 6, 2004 7:18 am
... shraddha> Can u tell me what exactly happens when u say shraddha> $perl test.pl shraddha> at the backend??? Electrons swirl, and the answer appears on your...
18222
kishorevutukuru
Mar 6, 2004 8:31 am
Hi All, I Installed Perl driver ( DBI and DBD for Oracle), but whenevery i am trying to connect to Oracle database I am getting this err. ld.so.1: perl: fatal:...
18223
Jonas
jonastheperlguy
Mar 6, 2004 3:46 pm
... ... The simplest answer is: perl (the binary program) is sought in the default path for the user running the command. If and when found it is executed...
18224
Allan Dystrup
allan_dystrup
Mar 7, 2004 1:48 pm
hi, Is there any language support in perl for the equiv. of static variables in normal procedures (sub), eg. as known from C/C++ ? I couldn't find any info on...
18225
Charles K. Clarkson
charlesclarkson
Mar 7, 2004 5:46 pm
... If a static variable is what I think it is, try this: print foo() for 1 .. 5; { my $static; sub foo { return ++$static; } } HTH, Charles K. Clarkson -- ...
18226
merlyn@...
merlynstoneh...
Mar 7, 2004 6:06 pm
... Allan> hi, Allan> Is there any language support in perl for the equiv. of static Allan> variables in normal procedures (sub), eg. as known from C/C++ ? ...
18227
Paul Archer
tigger@...
Mar 7, 2004 7:53 pm
I'm trying to use the following line under HTML::Mason (and within a File::Find subroutine) to limit the depth of the directory structures returned: if ( (...
18228
Charles K. Clarkson
charlesclarkson
Mar 7, 2004 9:06 pm
... m|^label.txt$|) { ... How about avoiding split: if ( $File::Find::dir =~ tr|/|| < $dir_elements && $_ =~ m|^label.txt$| ) { HTH, Charles K. Clarkson -- ...
18229
Paul Archer
tigger@...
Mar 7, 2004 11:06 pm
... Cool, that works. I was avoiding a solution like that 'cause of the problems with having input with a trailing slash vs no trailing slash. But i guess the...
18230
Greg Matheson
lang@...
Mar 8, 2004 3:21 am
YOu can use $#array to get the index of the last element in @array, but what if you have $aref, a reference to an array. I tried $$#aref and ${$#aref} and...
18231
salilakerkar
Mar 8, 2004 6:47 am
Hello All, I am a new member of the group. I was planning to use PERL for my thesis in the initial stage where I had to do simple file hadnling and...
18232
shraddha more
its_shraddham
Mar 8, 2004 8:06 am
Hi... I want to replace word - apples by oranges... for replacing the basic program is as follows... #!/usr/bin/perl -w $string1="apples apples"; $string1 =~...
18233
pankaj Vaidya
pankaj_vaidya
Mar 8, 2004 9:27 am
Hi , If you are on a Unix/Linux platform, open your file in vi and type the following in the command line at the ... This will do the trick. If you want to do...
... Look at the Perl References documentation: From the command line: perldoc perlreftut or on the web: ...
18236
Ramprasad A Padmanabhan
ramprasad_ap
Mar 8, 2004 10:20 am
... try it It will surely not erase any files on your harddisk even if were to fail Ram...
18237
parvez mohamed
parvez80
Mar 8, 2004 10:44 am
Hello Allan, Declare the variable out side the sub and put brackets above it i mean static.pl { my static_var; sub method { ........... ........... } } if you...
18238
Pradeep K
prad_kris
Mar 8, 2004 1:25 pm
Hi Everybody, I have to validate a page before it is submitted. For this i have to call a function using the ONSUBMIT attrib of the SUBMIT button in HTML. I...
18239
daymobrew@...
daymobrew
Mar 8, 2004 2:15 pm
... Using onSubmit is really a Javascript question. Here is an example of using onSubmit: http://html-html.com/forms/_FORM_onSubmit.html What do you mean 'I...
18240
Emanuel G Calso
egcalso
Mar 9, 2004 7:26 am
Good day, The way i do it, i open a file first in read mode then replace the contents, then open it in write (over-write) mode. HTH ... -- eman calso ...
18241
Greg Matheson
lang@...
Mar 9, 2004 7:33 am
... C:\cygwin92;home92;greg>perl -d -e 0 Loading DB routines from perl5db.pl version 1.22 Editor support available. Enter h or `h h' for help, or `perldoc...
18242
Allan Dystrup
allan_dystrup
Mar 9, 2004 8:20 am
Hi Mohamed Parvez, Charles Clarkson & "one L Randal..." :), and thank's for your feedback on my Q on static vars in perl subs. The solution i'm currently using...
18243
Jeff Eggen
jeggen@...
Mar 9, 2004 1:35 pm
... Did you try Date::Calc? It has handy Delta_**** functions for determining time & date differences, as well as functions for manipulating string...