in reply to Syntax Problem

The . operator is used for concatenation, so it might not play nice with your code when it is used with variables. It probably thinks you are trying to concatenate $num with something else.

Try this:

$f=102; $o=111; print (chr ($num) . chr ($num2) . chr ($num2));

-----------------------------------
Washizu
The best offense is a good offense.

Replies are listed 'Best First'.
Re: Re: Syntax Problem
by Anonymous Monk on Nov 19, 2001 at 19:18 UTC
    Thank you very much. :)