What I am looking for is how to embed those java acript buttons with in my Perl
Script. The design (not by me, Ime just the lackey carrying it out) calls
for 12 buttons...I cannot have 12 submit buttons tied to seperate queries can I?
thx
Comment on Re: Need buttons on web page for retrieving database values
use CGI;
my $query = new CGI;
if ($query->param('do_connect')) {
# connect to database
}
elsif ($query->param('do_results')) {
# get results of sql call
}