Latest Answer: HiThe faviurite module is undoubtly CGI.pmIt simplifies the coding as we no need to worry about the intricacies involving the form processing etc.Thanks,Abhishek jain ...
Latest Answer: It is having the features of scripting (Shell) as well as programming (like C). Using PERL you can easily do the system administration works where comparitively difficult with Shell script. ...
Latest Answer: When to use Perl1. For large text processing2. When application does lot of data manipulation3. When you need fast development4. For database loading operations5. When shell scrits grow to become libraries ...
Latest Answer: There's also:-T for taint mode for security/input-checking-W for show all warnings mode (or -w to show less warnings) ...
Latest Answer: Perl is like this but (being Perl) goes a step further. The following file handles are open by default:STDIN - Standard Input, for user control input, typically the keyboardSTDOUT - Standard Output,for regular use output, typically the screenSTDERR - ...
Latest Answer: The other trick is to use http://www.freetds.org/ for your sybase driver (M$SQL is just an old version of sybase that has been heavily modified). Then standard DBI calls work. Here is a program to login to an SQL server and print success if ...
What's the significance of @ISA, @EXPORT @EXPORT_OK %EXPORT_TAGS list & hashes in a perl package? With example?
I have a variable named $objref which is defined in main package. I want to make it as a Object of Class XYZ. How could I do it?
What is difference between "Use" and "require". In which case should "Use" be used and not "Require"?
Both of them are used to declare local variables.The variables declared with "my" can live only within the block it was defined and cannot get its visibility inherited functions called within
Latest Answer: Perl supports three scoping declarations that enable to create private variables (using my) , selectively global variable (using our) and temporary copies of selected global variables (using local) ... my declares a variable to be scoped within the current ...
View page << Previous 2 3 4 5 [6] 7 Next >>

Go Top