Re: Crypted script ?

2003-01-18 Thread zentara
On Fri, 17 Jan 2003 21:00:27 +0100, [EMAIL PROTECTED] (Rene Verharen) wrote: >I found a (commercial) script on the net which shows me all the installed >Perl Modules. Trying to see how thing were done showed me that this script >was sort of cripted : > >#!/usr/bin/perl >$lEECXCBBXCBEXAECAXBACXD

Re: Naming a variable from value of a scalar.

2003-01-18 Thread WilliamGunther
In a message dated 1/17/2003 6:04:41 PM Eastern Standard Time, [EMAIL PROTECTED] writes: > Is it possible to name a variable as the numeric value of a scalar? Well, all scalar variables you create must start with a letter. But, if you're talking about something like this: $var = "hello"; ${$va

Re: Naming a variable from value of a scalar.

2003-01-18 Thread Randal L. Schwartz
> "WilliamGunther" == WilliamGunther <[EMAIL PROTECTED]> writes: WilliamGunther> In a message dated 1/17/2003 6:04:41 PM Eastern Standard Time, WilliamGunther> [EMAIL PROTECTED] writes: >> Is it possible to name a variable as the numeric value of a scalar? WilliamGunther> Well, all scalar

cgi text color in tables

2003-01-18 Thread Skorpion
i can't change the text color in a single row of table (even in all table) i can use html tags it works fine than, but while using shortcuts there's no result at all statement start_html({-text=>'green', -bgcolor=>'red'}) - works fine but in stetment table({-bgcolor=>'purple', -text=>'ye

Escape Characters

2003-01-18 Thread Bill Burke
I'm trying to send mail to users returned from a database. The problem occurs when sendmail sees the "@" in the email address. Is there a function to escape reserved characters? Also, does sendmail allow sending as HTML? TIA bb -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands,

[OT] RE: Search database problem.

2003-01-18 Thread fliptop
On Sat, 18 Jan 2003 at 17:45, Hughes, Andrew opined: [reply cc'd to list] HA:DBD::mysql::db do failed: Duplicate entry '[EMAIL PROTECTED]' for HA:key 2 at nCSSW.pl line 787. HA: HA:I know that you tried to point me in the right direction with the code HA:snippet that you suggested. However, as I

Re: cgi text color in tables

2003-01-18 Thread Craig Dean
On Saturday 18 January 2003 08:05 am, you wrote: > i can't change the text color in a single row of table (even in all table) > i can use html tags it works fine than, but while using shortcuts there's > no result at all > > statement > start_html({-text=>'green', -bgcolor=>'red'}) - works fin

Re: Escape Characters

2003-01-18 Thread Craig Dean
On Saturday 18 January 2003 03:44 pm, you wrote: > I'm trying to send mail to users returned from a database. The problem > occurs when sendmail sees the "@" in the email address. > Is there a function to escape reserved characters? > Also, does sendmail allow sending as HTML? > TIA bb Yes the perl

RE: Escape Characters

2003-01-18 Thread Bill Burke
I have used the "\", and the sendmail then worked. I was looking for something similar to the PHP addslashes(). Or maybe replace, like replace(strAdd, "@", "\@"). Thanks, bb -Original Message- From: Craig Dean [mailto:[EMAIL PROTECTED]] Sent: Saturday, January 18, 2003 6:16 PM To: Beginner

Re: cgi text color in tables

2003-01-18 Thread Dave K
> > i can't change the text color in a single row of table (even in all table) > > sincerely greg > this is an html specification. To affect data or text in the cells each cell > must be formatted with the desired attributes. > Check W3C HTML 4.01 spec. You can mix in standard html pretty much a