I have created a CGI-based page,after entering all the
values in to the fields, How to get the output on the web
browser using Perl
Answer Posted / suvvari
In the HTML form, you have to mention the perl script name.
Ex: <form action="test.pl" method="POST">. Then in the
test.pl, you have to mention the content-type as
print "content-type: text/html\n\n";. And read the form
values and print them.
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
What is the purpose of “_file_ literal” and “_line_ literal” in perl?
Why should I use the -w argument with my Perl programs?
Is perl compiler or interpreter?
How do I print the entire contents of an array with Perl?
Explain different types of perl operators.
Can inheritance be used in perl? Explain with the help of an example.
How to turn on Perl warnings? Why is that important?
Show the use of sockets for the server and client side of a conversation?
What are the various file operations in perl. Explain with example.
How will you access an element of a perl array?
what is Polymorphism in Perl?
Write a program that explains the symbolic table clearly.
What package you use to create a windows services?
What are perl variables?
Explain the use of 'my' keyword in perl?