James Woods wrote:
>
> The code I was referring to was:
>
> foreach (@Draw) {
>     s/\s+$//g; # remove all whitespace at the end of a row
>     print "<input type='hidden' name='drawHidden' value='$_'>\n";
> }
>

   Are you reading the data into an array in the script and then printing
the array using interpolation inside double quotes?

   print @Array; and print "@Array";. are different. The second will
separate the items with spaces.

Tagore Smith




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

Reply via email to