in reply to Redirection from a pulldown menu
simple enough to do in perl. here is some sample html:
<form action='go.cgi' method='post'> <select name='go'> <option value='http://perlmonks.org/'>perlmonks.org <option value='http://slashdot.org/'>slashdot <option value='http://freshmeat.net/'>freshmeat </select> <input type='submit' value='stumbit'> </form>
call your cgi script "go.cgi" and make it executable. you are in business.
key point to remember
sample perl script:
#!/usr/bin/perl use CGI 'param'; my $go = param('go'); print <<END; Location: $go END # add logging, etc in here. if you are setting cookies, # put them right after the Location line.
|
---|