Beefy Boxes and Bandwidth Generously Provided by pair Networks
The stupid question is the question not asked
 
PerlMonks  

Re: Language or string templates?

by ikegami (Patriarch)
on Oct 02, 2004 at 03:50 UTC ( [id://395817]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    use Config::IniFiles;
      
    ...
    
    print "We have $GLOBALS{$lang}{Parameter}."
       if $GLOBALS{$lang}{Parameter};
    
  2. or download this
    use Config::IniFiles;
      
    ...
    %GLOBALS = %{$ini{$lang}};
    print "We have $GLOBALS{Parameter}."
       if $GLOBALS{Parameter};
    
  3. or download this
    $GLOBALS{'strCliDeactivated'} = "Currently not active";
    $GLOBALS{'strNotActive'}      = "date has not yet been reached";
    $GLOBALS{'strExpired'}        = "date has been reached";
    

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://395817]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others surveying the Monastery: (4)
As of 2024-04-25 20:49 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found