PrestwoodBoards.com
-Collapse +Expand

Perl

Search Perl Group:

Advanced
-Collapse +Expand Perl Group Home◄╣
-Collapse +Expand Message Board
-Collapse +Expand Knowledge Base
-Collapse +Expand Perl To/From
To/FromCODEGuides
-Collapse +Expand Perl Store
PRESTWOODSTORE
-Collapse +Expand Members Only
   PrestwoodBoardsAll Groups   

New to PrestwoodBoards?

Sign up, it's free and anyone can join.

Join Today for a free account,
or Sign In if you are already a member.

Perl Group

Welcome Guest!

This page is the Perl Group home page (summary page).


Perl

This group is the those interested in the Perl scripting language.

Perl is a stable, cross platform programming language. It is used for mission critical projects in the public and private sectors. Perl is Open Source software, licensed under its Artistic License, or the GNU General Public License (GPL). Perl was created by Larry Wall.

Want to become a moderator?
Pearl ImageWe are currently looking for someone to moderate our Perl message boards. If you're interested, send a private message to Mike Prestwood. Once you are a moderator, you will receive an email whenever someone posts.

Want to become an author?
We are currently looking for authors to post to this group's knowledge base. We are looking for generic Perl material as well as material specific to the varioius Perl development tools available.  If you're interested, send a private message to Mike Prestwood or get started by submitting content to our Perl KB Topic (or any subtopic).

Perl Content!
Chat!
Perl Board:
Posts =  12
Threads =  6
Unanswered =  0
Topics =  1
Research!
Perl KB:
Articles =  5
10 Min Starts =  1
Code =  21
Translate!
To/From Code:
Topics =  38
Code =  660

What's happening now! Perl Group!

(New, updated, and unanswered.)

New: All Post Types

Message board, knowledge base, article comments, blogs, news, etc.

  Title Type Topic
Sign In To Check If Stuff Is New
37
Hits
1. Perl Constants (use constant)
In PHP, you declare constants using the define key...
7/15/2010, 10:36:59 AM

Code
Perl  
Sign In To Check If Stuff Is New
890
Hits
2. Perl Variables ($x = 0;)
Perl is a loosely typed language with only three types of variables: scalars, arrays, and hashes. Us...
11/13/2008, 1:03:03 PM

Code


KB Post
Beginners Corner  
More...

New: Perl Message Board Posts

Go To: Perl Message Board
 Thread StarterReplies Last Post Topic
Sign In To Check If Stuff Is New
1659
Hits
How to flow Diagram an existing Perl script
i want a tool for perl script for reengineering. Specifically, how to flow ...
2
Are you talking about creating a flow chart? If so, I currently use Visio and would recommend it. I...
6/20/2008
Perl
Sign In To Check If Stuff Is New
1161
Hits
perl 5.8 kernel 2.40.19
Does anyone know what syntax to fork() in perl is? perl 5.8 kernel 2.40.19
1
my $pid = fork(); The parent's $pid will contain the process ID of the child, the child's $pid will...
1/11/2007
Perl
Sign In To Check If Stuff Is New
762
Hits
easy one about forms.....
Ive followed the instructions at namehog.net: http://www.namehog.net/support/formemail.htm to put a form on my webpage. But it doesnt work. I get this error message....could anyone help?? CGIWrap e...
0New!
7/20/2002
Perl
Sign In To Check If Stuff Is New
1011
Hits
Chat kick option
I need to add a kick option to a chat program I am making.I was wondering how can you get the server to read from a list box (ban list) or how I could close a s...
1
Here is an example of what I would do using ASP, it may not be exactly what you want but the methodo...
6/25/2002
Perl
More...

Unanswered: Perl Message Board

 Thread StarterReplies Last Post Topic
Sign In To Check If Stuff Is New
762
Hits
easy one about forms.....
Ive followed the instructions at namehog.net: http://www.namehog.net/support/formemail.htm to put a form on my webpage. But it doesnt work. I get this error message....could anyone help?? CGIWrap e...
0New!
7/20/2002
Perl
Sign In To Check If Stuff Is New
645
Hits
unlink the unkown
I want to be able to delete all the files in a given directory: Currently I am trying to use the unlink funtion to "unlink *" in the directory. The actual code looks like this: unlink ("/sasdata/$E...
0New!
6/20/2001
Perl
More...

New: Perl Knowledge Base Posts

Go To: Perl Knowledge Base
    KB Article KB Topic
Sign In To Check If Stuff Is New
108
Hits

Code
1. Perl Constants (use constant)
7/15/2010
Perl
Sign In To Check If Stuff Is New
792
Hits

Code
2. Perl Deployment Overview

With Perl, you simply copy your files to a web server that is capable of running Perl pages.

3/11/2009
Beginners Corner
Sign In To Check If Stuff Is New
752
Hits

Code
3. Perl Logical Operators

Languages Focus: Logical Operators

Logical operators perform conditional and,

2/11/2009
Beginners Corner
Sign In To Check If Stuff Is New
706
Hits

Code
4. Perl Assignment (=)

Languages Focus: Assignment

Common assignment operators for languages include =, ==, and...

2/11/2009
Perl
More...

New: To/From Code

Go To: Perl To/From Guides

Code Snippets

  Code Snippet Created
1. Comments 1/1/2009
2. Case Sensitivity 1/1/2009
3. Literals 1/1/2009
4. Variables 1/1/2009
5. Assignment 1/1/2009
6. String Cancatenation 1/1/2009
7. File Extensions 1/1/2009
8. Unary Operators 1/1/2009
9. If Statement 1/1/2009
10. Code Blocks 1/1/2009

Topics

  Topic Category Created
1. Array Data Structures 3/20/2010
2. Comments Language Basics 1/1/2009
3. Left of String Commands 1/1/2009
4. Abstraction OOP Details 1/1/2009
5. End of Statement Language Basics 1/1/2009
6. Case Sensitivity Language Basics 1/1/2009
7. Literals Language Basics 1/1/2009
8. Variables Language Basics 1/1/2009
9. Assignment Operators 1/1/2009
10. String Cancatenation Operators 1/1/2009

Lastest Perl Flashcard

Our flashcards are part of our library of tidbits.

Tidbits are FAQs, Definitions, Tips, and Code Snippets from our knowledge base.

Perl Constants (use constant)

In PHP, you declare constants using the define keyword:

define("CONST_NAME", "Value");

Constants in PHP are case sensitive. A common standard in PHP is to use all-uppercase letters, with underscores to separate words within the name.

 

use constant FULL_NAME => 'Mike Prestwood';
use constant AGE => 38;
  
print "Your name is " . FULL_NAME . ".<br>";
print "You are " . AGE . ".<br>";
Posted By Mike Prestwood, Post #102184, KB Topic: Perl
 
339 People Online Now!!  
Online Now: Sign In to see who's online now!  Not a member? Join Prestwood now. It's free!