"Jimmy George" <[EMAIL PROTECTED]> wrote in message
[EMAIL PROTECTED]">news:[EMAIL PROTECTED]...
> Hello World
>
> Is the line
>
> print DATAFILE ("The file was recorded at <!--#config timefmt="%d%b%y at
%r"-->");
>
> a valid cgi line....

for a string like this, I would use single quotes:

print DATAFILE 'The file was recorded at <!--#config timefmt="%d%b%y at
%r"-->';

Alternatively, you can use a quote operator:

print DATAFILE qq(The file was recorded at <!--#config timefmt="%d%b%y at
%r"-->);

Todd W



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

Reply via email to