[H-GEN] fscking perl
Paul Gearon
pag at tams.com.au
Wed Sep 2 22:41:41 EDT 1998
> > print $Name "\n";
> > print $Value "\n";
> >
>
> Which is expected behaviour from your script - what yo're
> doing is trying
> to print to filehandles $Name and $Value - try adding a . between the
> variable and the \n, so the lines look something like:
>
> print $name . "\n";
> print $value . "\n";
>
> Hope that helps,
> Brad
Alternatively, put the variables in your string:
print "$Name\n";
print "$Value\n";
Paul Gearon
gearon at computer.org
Microsoft - Where every morning is the dawn of a new error.
More information about the General
mailing list