What is the Common Gateway Interface?
Answers were Sorted based on User's Feedback
Answer / guest
The Common Gateway Interface is a standard for communication
between Web servers and external programs.
| Is This Answer Correct ? | 4 Yes | 0 No |
Answer / anish
CGI is software programme through which a communication
take place between user rquest web and server.
| Is This Answer Correct ? | 3 Yes | 0 No |
Explain ivalue in perl?
What does cgi program store?
How to merge two arrays in perl?
Remove the duplicate data from @array=(“perl”,”php”,”perl”,”asp”)
There is no strict data types in perl unlike in other high level languages like Java so wouldn't that be a problem if a code in perl is to be a written by a big team of 20+ members ?"
Why to use perl scripting?
Explain regular expression in perl?
You want to print the contents of an entire array. How would you do that?
my @array=('data1','data2'); my @array1=('data1','data2'); my ($i,$k); $i=7; $k=7; while($i){ $array [++$#array] = 'ree'; $i--; print "@array"; } while($k){ push(@array1,'ree'); $k--; print "@array1"; } Are these two while loop are doing the same functionality ? What may be the difference?
What is the difference between for & foreach, exec & system?
What are the steps involved when the cgi program starts running?
What is the use of -w, -t and strict in Perl?