... nimbus3.internetters.co.uk id fA10FXN22309 ... conduit, Homestead cannot monitor user websites, but we respond to breaches of our user agreement when we...
Hi there, Ive got one script which copies a file from a CGI sub- directory - into the same directory /pics - But under a different name.. Anyway, im using the...
Hello, I need members help on this:- I wish to search a html guestbook for a particular word lets say Jim and if the word Jim is found , to display the records...
... Unfortunately, that's not the problem. Right now NO ONE has moderator access to this, including me, the owner. They screwed up my account royally and I can...
I forgot to say that my whole idea was to read the whole file frall.html into one line, then replace horizontal line <hr> with <hr>\n (horizontal line plus new...
6724
Etienne Marcotte
emarcott@...
Nov 1, 2001 1:13 pm
I'm glad to see it worked. I sent two emails clearly and directly (one to abuse and one to "other" questions. I hope a lot did the same as me, but seems it...
Hello group, Does anyone know why the following line of code: my $lastchar = substr("$ENV{PS1}", length("$ENV{PS1}") - 2); Would properly extract the last 2...
6727
Jeff Eggen
jeggen@...
Nov 1, 2001 1:53 pm
Never mind, I figured it out. The other user wasn't exporting his PS1 variable. Thanks anyhoo for anyone typing a response. Jeff ... Hello group, Does anyone...
Welcome Dan, My name is Dan too, and yes I am a beginner like you. You will find this list very helpful there are alot of great people on here ... From: Eric...
Hi all Anyone know of a perl script that would will upload a MS word file, convert it to html and then take it and stick it on a webpage somewhere where its...
6730
Cam Coble
tech@...
Nov 1, 2001 2:33 pm
What's wrong with saving the document as html in word, then uploading? This way you can tell what will happen to the document, as converting to html from Word...
... From: "scott.list" <scott.list@...> To: <perl-beginners@yahoogroups.com> Sent: Thursday, November 01, 2001 2:56 PM Subject: Re: [perl-beginners] 'OLD'...
6732
Oliver Manickum
oliver@...
Nov 1, 2001 2:36 pm
I have done this in vb ... made an exe of the application and use perl to control it.... source code of the vb app is here Dim oWord As New Word.Application ...
... How do you know it didn't work? Did you test it by printing it? use Data::Dumper; print Dumper \@read; chomp @read; print Dumper \@read; You should...
Scott asked if someone could forward his message and so I did. Apparently he has signed of the'old' list already Petra . ... From: "Etienne Marcotte"...
6737
Jeff Eggen
jeggen@...
Nov 1, 2001 3:13 pm
... Thanks Charles. That was kind of the problem, but it's all figured out now. But, along the same thread, I'm having problems getting a telnet connection...
6738
Etienne Marcotte
emarcott@...
Nov 1, 2001 3:33 pm
I tryed some different things let's say I have sub print{ my $foo = $_[0]; my $bar = $_[1]; print<<END; some text $foo some more text $bar END } If i send 2...
... I think your best bet is to see if Word's conversion utility can be invoked from the command line and to host your script on a NT machine. That's the only...
... Shouldn't this line be: print $_; # or just: print; It looks like your script is trying to put a GIF file out as part of HTML output. Instead of the...
... No way. Here is a way to avoid warnings: sub print( $;$ ) # The '$:$' is optional - it's like a prototype. { my $foo = shift; my $bar = shift; $bar =...
hi, i am quiet a beginner at perl, is there any way i can get a list of all the subdirectories in a folder.I have 4-5 level of folders within folders... when i...
Can anyone help me out with this file? This file holds info in it but all I want from it is the \www\dan.htm OR if it is a directory \www\DAN\. Bottom Line is...
I'm not able to connect to my server just now (I've been told the link to provider is down, the machine sits under a table in a friends company) so .. sory no...
Greetings friends! I hope someone can tell me what I'm doing wrong - what I WANT to do is if I find "00150" in a certain position of a file, I want to replace...
You could break up the line by letters I suppose.. while(<INPUT>) { @letters=split(//, $_); if ($letters[60]==0 && $letters[61]==0 && $letters[62]==1 ..so on...