- Original Message -
From: "Mystik Gotan" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Monday, December 23, 2002 2:44 PM
Subject: Re: Substition problem with guestbook (smilies)
> Nope, still no avail.Anyway, I debugged some parts and with your code,
it's
>
Hi
You'll kick yourself...
$query_message =~ s/:\)//;
First slash terminates the substitute.
Use
$query_message =~ s[:\)][];
or similar.
Rob
"Mystik Gotan" <[EMAIL PROTECTED]> wrote in message
[EMAIL PROTECTED]">news:[EMAIL PROTECTED]...
> Hi there!
>
> I've got a problem. I scri
Hi there!
I've got a problem. I scripted a nice guestbook script. All working fine,
and then I thought about adding smilies to the script. Now, the only
solution doing this is using tr/// or s///. Tried both, no effect. I really
tried a lot, but still getting some errors. So, I thought, adding