Re: changing backgorund color error

2003-01-25 Thread jdavis
On Sat, 2003-01-25 at 00:25, MJ wrote: > The below given part of code from a cgi script is > working fine but when I try to change the back ground > color to > print "\n"; print "\n"; looks like you need to maybe this will help..you have that qoute at the end..by the 2 print "\n"; -- jd [E

Re: changing backgorund color error

2003-01-25 Thread Rob Dixon
Mj wrote: > The below given part of code from a cgi script is > working fine but when I try to change the back ground > color to > print "\n"; Something is wrong here. Check your closing quotes - the line as it is above won't compile. You should have: print "\n"; This may or may not be your

Re: Modules

2003-01-25 Thread Rob Dixon
Ismar Dupanovic wrote: > Got 2 modules and a driver script that uses both. Both modules > require Exporter and export their functions. However in my driver > script I have to fully qualify the function names of the SECOND > module(module->function), while the functions of the first module > become

write a parser using perl

2003-01-25 Thread tao wang
Hi everyone, I'm new to Perl. Does anyone have experence with writting parser by perl? Any places i can find some examples? thanks a lot. - tao __ Do you Yahoo!? Yahoo! Mail Plus - Powerful. Affordable. Sign up now. http://mailplus.yahoo.com -

Re: write a parser using perl

2003-01-25 Thread Wiggins d'Anconia
tao wang wrote: Hi everyone, I'm new to Perl. Does anyone have experence with writting parser by perl? Any places i can find some examples? thanks a lot. Parser of what? XML, HTML, ID3 tags, Mail messages, etc.? Check CPAN (http://search.cpan.org) first because if more than two people c

Re: write a parser using perl

2003-01-25 Thread tao wang
thanks. I need parse a text file, which is like a text database file, but not very structured. many thanks. --- Wiggins d'Anconia <[EMAIL PROTECTED]> wrote: > tao wang wrote: > > Hi everyone, > > > > I'm new to Perl. Does anyone have experence > with > > writting parser by perl? Any places i

Re: write a parser using perl

2003-01-25 Thread Wiggins d'Anconia
tao wang wrote: thanks. I need parse a text file, which is like a text database file, but not very structured. many thanks. In that case you will need to decide what the "structure" is, and what you can guarantee. A normal text database is going to be parsed in the following general manne

Re: write a parser using perl

2003-01-25 Thread Johnathan Kupferer
You'll want to look at: perldoc -f pack perldoc -f unpack if you're working with fields of pre-determined lengths and the database files aren't delimited. Perhaps if you could post an example we could give you better advice. - Johnathan Wiggins d'Anconia wrote: tao wang wrote: thanks.

Re: changing backgorund color error

2003-01-25 Thread Johnathan Kupferer
Not to be too much of a pain but... You should reconsider using the bgcolor property at all since it has been depreciated. Consider using CSS like:
body {background-color: #004152; }
... Or at least: From the looks of your code, I'm wondering if you 'use strict'. If you

Re: changing backgorund color error

2003-01-25 Thread R. Joseph Newton
Hi Jonathan, I'm going to take issue with you on a couple points. I think all the original poster needed was to take a second look at his quote escaping. Johnathan Kupferer wrote: > You should reconsider using the bgcolor property at all since it has > been depreciated. Depends on why it has

Re: changing backgorund color error

2003-01-25 Thread Johnathan Kupferer
You should reconsider using the bgcolor property at all since it has been depreciated. Depends on why it has been deprecated. It works. It's very backwards compatible. It is much more portable than style specifications. Quite true. You have to even drag out the font tags for compatabilit

Re: write a parser using perl

2003-01-25 Thread John W. Krahn
Tao Wang wrote: > > Hi everyone, Hello, > I'm new to Perl. Does anyone have experence with > writting parser by perl? Any places i can find some > examples? thanks a lot. http://search.cpan.org/search?query=parse&mode=module John -- use Perl; program fulfillment -- To unsubscribe, e-m