including a file

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • sbettadpur
    New Member
    • Aug 2007
    • 121

    including a file

    Hi,

    iam new to perl
    I have to files with .pl extensions

    but i want to include two files in another .pl file

    how can i do in perl

    in php i can do like this
    in test3.php

    in test3.php i can include my two files under like this
    include_once("t est1.php");
    include_once("t est2.php");

    and i have another doubt

    i have mails in my mailserver with attachments of .pdf files

    Now i want to download the attachement into one specified place how can i do it


    Thanking you.
  • eWish
    Recognized Expert Contributor
    • Jul 2007
    • 973

    #2
    perldoc - require function.

    Comment

    Working...