Alan Knowles wrote:
> <? if ($uselanguage) == "en") { ?>english<? }
> <? if ($uselanguage) == "german") { ?>Ich bin ein berliner...<? }
> 
> the translator will pick up both, Im not sure there is any logic that would be valid 
>to pick up this condition (open to ideas though)

It is not much longer if you write 

<? if ($uselanguage) == "en") { echo "english" }
   if ($uselanguage) == "german") { echo "Ich bin ein berliner..." }
?>

The translator doesn't pick up this, am I right?

Ferenc

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

Reply via email to