User Profile

Collapse

Profile Sidebar

Collapse
rammohan
rammohan
Last Activity: Mar 11 '14, 08:14 AM
Joined: Feb 4 '14
Location:
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • rammohan
    replied to Getting error while using Perl Module
    in Perl
    ya thank you for your replay . Before you answering this question i got it what's the wrong in my code.
    See more | Go to post

    Leave a comment:


  • rammohan
    started a topic CGI in Perl
    in Perl

    CGI in Perl

    Hi to all,

    Currently I'm learning Perl CGI. Can any one tell me how to execute Perl CGI program and what are additional plugins need for to run this script and provide some good tutorials about this and please explain this with one basic example
    See more | Go to post

  • rammohan
    started a topic Getting error while using Perl Module
    in Perl

    Getting error while using Perl Module

    Code:
    package ExampleModule;
    
    use strict;
    use base "Exporter";
    our @EXPORT = qw(hello_world);
    
    sub hello_world {
        print "Hello,world";
    }
    1;
    
    #!/usr/bin/perl -w
    use strict;
    use lib '/home/Admin/Desktop/Perl_Work_Space/ExampleModule.pm/';
    use ExampleModule qw(hello_world);
    hell_world('ram');
    exit;
    error:...
    See more | Go to post

  • rammohan
    started a topic How to take hash values from terminal in perl
    in Perl

    How to take hash values from terminal in perl

    Hi to all ! I'm new to this forum an as well as Perl scripting . My question is how to take Hash values from user using terminal in Perl.

    my code is :
    my%inputline = <STDIN>;
    print %inputline;


    it showing some error
    Odd number of elements in hash assignment at until.pl line 199, <STDIN> line 1.
    ram 47 nasdfi 47 klsdjf 258 dshafa 639
    Use of uninitialized value...
    See more | Go to post
No activity results to display
Show More
Working...