Write a script to enter your first name and last name and then print your concatenated name
1
Expert's answer
2021-10-28T05:37:56-0400
<form action = "/cgi-bin/hello_get.py" method = "post">
First Name: <input type = "text" name = "first_name"><br />
Last Name: <input type = "text" name = "last_name" />
<input type = "submit" value = "Submit" />
</form>
Comments
Leave a comment