Mary Anderson:
> open(LOG,">>.\guestbook.err")||
Simply try '>>./guestbook.err'.
BTW, whitepace is cheap nowadays:
my $logfile = './guestbook.err';
open( LOG, '>>', $logfile )
or die "Couldn't open log ($logfile) $!";
--
Grtz, Ruud
--
To unsubscribe, e-mail: [EMAIL PROTECTED]
Fo
Chris Cosner schreef:
> The beginning and ending markup are the same. So text would
> become text in HTML. A single line can have more than one of
> these italicized words, for example.
If all in a single line:
s~(.*?)~$1~g
--
Grtz, Ruud
--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For add