Difference between Perl and Mod_perl?
Answers were Sorted based on User's Feedback
Answer / shah faisal
Perl is a language and MOD_PERL is a module of Apache used
to enhance the performance of the application.
Is This Answer Correct ? | 16 Yes | 0 No |
What does read () command do?
What are the steps involved when the cgi program starts running?
How to change a directory in perl?
How do I print the entire contents of an array with Perl?
What are the advantages of programming in perl?
while(my($key, $value) = each(%hash) ) { print "$key => $value\n"; } my($key, $value); while(($key, $value) = each(%hash) ) { print "$key => $value\n"; } What is the different between these two code in case of "my" usage ?
What is perl push array function?
Write a program that explains the symbolic table clearly.
What are the arguements we normally use for perl interpreter?
What is the use of 'ne' operator?
Why do we use "use strict" in perl?
What is the Common Gateway Interface?