RE: Some Advice plz :))

2001-06-29 Thread Frederick Alain Ang Yap
You are rude! dive the guy a break man! -Original Message- From: Pierre Smolarek [mailto:[EMAIL PROTECTED]] Sent: Wednesday, June 27, 2001 10:24 PM To: RDWest Sr.; [EMAIL PROTECTED] Subject: Re: Some Advice plz :)) e. you want us to do your work for you? /me points out that

CSS in Perl

2001-06-29 Thread German, Douglas
Hi I'm in the process of developing an intranet which includes a site search engine. Having downloaded Perl scripts from the internet, I am now tweaking those scripts to fit in with the rest of the site. I have the initial search box embedded in an ASP page which on submission calls the Perl

RE: CSS in Perl

2001-06-29 Thread Al Hospers
SNIP The ASP and HTML pages on the site use CSS, and I need to include the same styles on the page that returns the search results, to give the site consistency. Does anyone know of a way this can be accomplished, apart from rewriting the entire CSS in Perl, which is beyond my capabilities?

Re: the phantom file handle

2001-06-29 Thread Casey West
On Fri, Jun 29, 2001 at 03:45:32PM +0100, Francesco Scaglioni wrote: : Hi : : And thanks again. : : Can anyone suggest why the following gives me an error of: : : 'no comma allowed after filehandle at /cgi-bin/filename line 13' : : Line 13 is the print header, start_html( etc etc one That is

Strange Behavior

2001-06-29 Thread James Kelty
I was wondering if someone could help me with the following code bit. It is acting strangely. if($ARGV[0] =~ m/^-l$|^-list$/i) { print What ports? (Press return after each port and CRTL-D when done.); chomp(@getem = ); print Who do you wanna hit, Homie? ; chomp($peer = );

Re: Strange Behavior

2001-06-29 Thread Brett W. McCoy
On Fri, 29 Jun 2001, James Kelty wrote: I am trying to take -l or -list as a command line argument, but it bombs out with this error when run. Perl, by default, will treat a command-line option as a file, so you also need to make sure you shift it off the @ARGV array if you are going to use