in reply to Re: Link instead of Submit button?
in thread Link instead of Submit button?

Why require Javascript when you can keep the functionality without Javascript? A plain <a href="..." link will be processed by CGI just the same:

print qq{<a href="?_logout=1">Log out</a>}

Replies are listed 'Best First'.
Re^3: Link instead of Submit button?
by tel2 (Pilgrim) on Dec 17, 2010 at 21:13 UTC
    That was simpler than I thought.  Thanks Corion!