Hello there,
I wonder if anyone can tell me if its possible to have a variable inside a href html link. In other words could i dynamically generate a series of html links by iterating thru an array. For example, like in this perl cgi extract....
for ($i = 1; $i <= 10; $i++) {
value=array;
<A href="prog1.cgi?data=${value}">$value</A>
}
so i am using a different querystring value in the link each interation of the loop. If this is not possible I would appreciate if anyone could suggest something else.
Many thanks in advance ......
r4k
I wonder if anyone can tell me if its possible to have a variable inside a href html link. In other words could i dynamically generate a series of html links by iterating thru an array. For example, like in this perl cgi extract....
for ($i = 1; $i <= 10; $i++) {
value=array;
<A href="prog1.cgi?data=${value}">$value</A>
}
so i am using a different querystring value in the link each interation of the loop. If this is not possible I would appreciate if anyone could suggest something else.
Many thanks in advance ......
r4k