[sr-dev] another syntax error

Andrei Pelinescu-Onciul andrei at iptel.org
Mon Jun 1 12:25:32 CEST 2009


On May 30, 2009 at 12:16, Juha Heinanen <jh at tutpro.com> wrote:
> this line gives me syntax error:
> 
> 		if ($fU == null) {
> 
> how should it be written?

I thing
    if ($fU == $null)

or better:
    if (!defined $fU)

Andrei



More information about the sr-dev mailing list