running a script thru a webpage

2003-03-28 Thread Christopher M Burger
Hello everyone. I have written a perl program that will take a tar file and untar it then move file from the untarred direcories to it's directory on the webserver. However, when I run the program thru a webpage it does not untar the file. If I run the program localy it works fine. I have even

showing directories and subdirectories.

2003-03-21 Thread Christopher M Burger
Hello, I was wondering if anyone had any ideas on how I can get a list of directories and subdirectories. I'm currently trying something like this: sub GetDirList { opendir (D_LIST, $_[0]) or die Could not open directory $_[0]; while ( defined ($vf = readdir D_LIST) ) { next if $gf =~

help with a date.

2003-03-14 Thread Christopher M Burger
I was wondering if anyone could help me. Here is my question. I have a date 03242003 I want it to look like 03/24/2003 how do I do that? Appreciate any help. Chris -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

formating numbers.

2003-02-28 Thread Christopher M Burger
I have some numbers that I want to format into a 00,000.00 format. Right now the numbers are link 0.00 how do I get the commas in there. I also do not know how many commas I will need. As the number may be 000.00 thus it would need two. Appreciate any help. Chris Burger -- To

parsing a datafile.

2003-02-04 Thread Christopher M Burger
I was wondering if anyone had any ideas on how to parse a datafile with fixed length records but no carriage returns. All records are on one line. There are 3 fields per record the first is 10 spaces, the second is 15 and the third is 40 then it starts back with 10 again. Any help would be