Posted by: moryadesigns on: September 10, 2009
SCRIPT FOR SMTP AUTHENTICATE MAIL IN PERL Net::SMTP – Simple Mail Transfer Protocol Client use Net::SMTP; # Constructors $smtp = Net::SMTP->new(‘mailhost’); $smtp = Net::SMTP->new(‘mailhost’, Timeout => 60); This module implements a client interface to the SMTP and ESMTP protocol, enabling a perl5 application to talk to SMTP servers. This documentation assumes that you [...]
Posted by: moryadesigns on: September 8, 2009
URL Encoding in PERL Many characters must be encoded within a URL for a variety of reasons. For example, certain characters such as ?, #, and / have special meaning within URLs and will be misinterpreted unless encoded. It is possible to name a file doc#2.html on some systems, but the URL http://localhost/doc#2.html would [...]
Posted by: moryadesigns on: September 5, 2009
Pagination is a very basic requirement of a web application, in this article we’ll see how to implement pagination easily using the Perl module Data::Pageset. Basically there are two types of pagination, Jumping and Sliding. In the jumping type the current page jumps from the starting position in a frame till the end and goes [...]
Recent Comments