On Wed, 12 Sep 2001, Jerry Preston wrote:

> Hi,
>
> I need to pass a string of values to a perl script via:
>
>   $numbers = " 1 2 3 4 5 6 7 8 9";
>
>   $s = "<a
> href=\"http://www/cgi-bin/passing.cgi?Number=$p&data=$numbers\";>$numbers</a>";
>
> When I do this all I get is the value "1"!

Build an array reference out of it:

$numbers = [qw(1 2 3 4 5 6 7 8 9)];

-- Brett
                                          http://www.chapelperilous.net/
------------------------------------------------------------------------
People think love is an emotion.  Love is good sense.
                -- Ken Kesey


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

Reply via email to