Beefy Boxes and Bandwidth Generously Provided by pair Networks
We don't bite newbies here... much
 
PerlMonks  

Re: return values on select after submit

by huck (Prior)
on May 13, 2019 at 21:21 UTC ( [id://1233736]=note: print w/replies, xml ) Need Help??


in reply to return values on select after submit

use strict; use warnings; use CGI; my $q = new CGI; my $firstname = $q->param('firstname') || ''; my $lastname = $q->param('surname') || ''; my $cars = $q->param('cars') || ''; #too funny .... https://www.w3schools.com/tags/att_option_selected.asp #$cars='volvo'; print qq|content-type: text/html\n\n|; print qq|<form action="$ENV{SCRIPT_NAME}" method="post">\n|; print qq|<input name="firstname" type="text" value="$firstname"/><hr/> +|; print qq|<input name="surname" type="text" value="$lastname"/><hr/>| +; print "\n"; print qq|<select name="cars" >|,"\n"; my @carlist; push @carlist,["volvo","Volvo"]; push @carlist,["saab","Saab"]; push @carlist,["fiat","Fiat"]; push @carlist,["audi","Audi"]; for my $cl (@carlist) { my $selected= $cars eq $cl->[0]?'selected ':''; print ' ',qq|<option |,$selected,qq|value="|,$cl->[0],qq|">|,$cl->[ +1],qq|</option>|,"\n"; } print qq|</select>|,"\n"; print qq|<input type="submit" name="form_submit" value="go">|;

way too funny...

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://1233736]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others learning in the Monastery: (6)
As of 2024-04-19 03:08 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found