Quick question and should be easy to answer.
Suppose I am calling a cgi script (e.g. test.cgi) using the GET method. I want to pass it a string and an array
$string = "hello";
@names = ("mike","fred"
I know to send the string I use
test.cgi?string=$string
but how do i send the names.... i.e. how do I send and array?
Thanks in advance
Ryan
Suppose I am calling a cgi script (e.g. test.cgi) using the GET method. I want to pass it a string and an array
$string = "hello";
@names = ("mike","fred"
I know to send the string I use
test.cgi?string=$string
but how do i send the names.... i.e. how do I send and array?
Thanks in advance
Ryan