Oops, ignore what I just said. My appologies for not reading your
email properly. I replied base on your subject alone.
As to your question, yes it is possible. However, you only use the
'?' to signify that parameter pairs follow. Use an '&' to seperate
each pair. Basically replace your second '?' with a '&', like so:
<a href="helpdesk.cgi?action=test_modify&name=$unique_id">
As long as $unique_id is interpolated properly this should give you
what you were after.
Sorry for the earlier confusion.
--
Paul Campbell
On Tue, Jul 24, 2001 at 10:34:24PM +0100, Paul Campbell wrote:
> On Fri, Jul 20, 2001 at 08:42:01AM +0930, Daniel Falkenberg wrote:
> > List,
> >
> > I have a problem that I need a hyperlink to take me to a location still
> > situated on my script but I need this hyperlink to be also able to pass on
> > variables to the next sub. I can do this with radio buttons and checkboxes
> >
> > $variable = param('unique_id')
> >
> > HTML as follows...
> >
> > <input type="radio" value='$variable'>
> >
> > Now I have a hyperlink <a
> > href="helpdesk.cgi?action=test_modify?name=$unique_id"> And I want to pass
> > the unique_id onto the next sub it takes it too.
> >
> > Is this possible and does this make sense?
>
> Simply use an INPUT element like this:
>
> <input type=image
> height=21
> width=31
> border=0
> value="Go"
> name="Go"
> src="http://i.imdb.com/f163.gif"
> align=absmiddle
> >
>
> This will behave just like a normal form submit button, except it will
> be an image. If you want to get a bit more fancy and have the image
> change when the mouse passes overhead or when clicked you will need to
> use javascript.
>
> No prizes for guessing whose webpage I stole this snippet from.
>
> --
> Paul Campbell (Sourceforge) <[EMAIL PROTECTED]>
> http://www.kemitix.uklinux.net SETI@Home Units: 271
> jupiter: 10:30pm up 6 days, 12:21, 4 users, load average: 0.48, 0.42, 0.29
> 'Schizophrenic'? No, we prefer the word 'Imaginative'.
>
> --
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
--
Paul Campbell (Sourceforge) <[EMAIL PROTECTED]>
http://www.kemitix.uklinux.net SETI@Home Units: 272
jupiter: 1:12am up 6 days, 15:03, 3 users, load average: 1.02, 1.24, 1.33
*I haven't lost my mind; it's backed up on tape somewhere!*
--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]