On Monday 07 January 2002 03:16 am, you wrote:
> You have two options:
>
> Option one: Put the string between single quotes $a = '"Test Test Test"';
>
> Option two:  $a = q("Test Test Test");
>
> Regards
> Robert Graham

Well, there are other options.  Not that they are better, but they are
options.  Both require escaping the characters.

        $a = "\"Test Test Test\"";
        $a = qq{"\"Test Test Test\""};


Steven

-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to