Programming Forums
User Name Password Register
 

RSS Feed
FORUM INDEX | TODAY'S POSTS | UNANSWERED THREADS | ADVANCED SEARCH

Reply
 
Thread Tools Display Modes
Old Jul 19th, 2006, 5:42 AM   #1
kruptof
Professional Programmer
 
kruptof's Avatar
 
Join Date: May 2006
Location: UK - London
Posts: 330
Rep Power: 3 kruptof is on a distinguished road
Perl Documentation

i would like to give this language a go, but i need the software to view/run my scripts...........i know where to get the software but is there any documentation on the installation of the software. the reason i ask for the installation documentations is that i had problems installing a php server software before......and i don't want to go through the same trouble as before...your help will be greatly apprecaited and i thank you in advance for your replies.
__________________
Quote:
When I was young it seemed that life was so wonderful,a miracle, oh it was beautiful, magical.
Now watch what you say or they'll be calling you a radical,a liberal, oh fanatical, criminal. Oh won't you sign up your name,we'd like to feel you're acceptable, respectable, oh presentable, a vegetable
kruptof is offline   Reply With Quote
Old Jul 19th, 2006, 8:33 AM   #2
Infinite Recursion
Programming Guru
 
Infinite Recursion's Avatar
 
Join Date: Jul 2004
Location: United States
Posts: 3,467
Rep Power: 8 Infinite Recursion is on a distinguished road
Send a message via MSN to Infinite Recursion Send a message via Yahoo to Infinite Recursion
Installing Perl on Linux or Windows?
__________________
http://jasonpowers.net

"There are a thousand hacking at the branches of evil to one who is striking at the root."
Infinite Recursion is offline   Reply With Quote
Old Jul 19th, 2006, 9:15 AM   #3
kruptof
Professional Programmer
 
kruptof's Avatar
 
Join Date: May 2006
Location: UK - London
Posts: 330
Rep Power: 3 kruptof is on a distinguished road
Quote:
Originally Posted by Infinite Recursion
Installing Perl on Linux or Windows?
sorry i forgot to state that i am using windows 2k......thanks for the advice big_K
__________________
Quote:
When I was young it seemed that life was so wonderful,a miracle, oh it was beautiful, magical.
Now watch what you say or they'll be calling you a radical,a liberal, oh fanatical, criminal. Oh won't you sign up your name,we'd like to feel you're acceptable, respectable, oh presentable, a vegetable
kruptof is offline   Reply With Quote
Old Jul 19th, 2006, 9:07 AM   #4
big_k105
PFO Founder

 
big_k105's Avatar
 
Join Date: Mar 2004
Location: Fargo, ND
Posts: 1,650
Rep Power: 10 big_k105 is on a distinguished road
Send a message via AIM to big_k105 Send a message via MSN to big_k105 Send a message via Yahoo to big_k105
If you are going to be using it on linux for just system admin type work then it should already be installed. Just try typing perl in the command like if you get the perl prompt then it is already installed. If you are planning on using it for CGI purposes then I don't really know how to help.

For windows there is a windows installer if you want it for system programming, but again if you want it for CGI purposes then I can't help you. good luck
__________________
BIG K aka Kyle
Programming Forums
Kyle K Online

Please do not PM or email me programming questions. Post them in the forums instead.
big_k105 is offline   Reply With Quote
Old Jul 19th, 2006, 9:43 AM   #5
Pizentios
Programming Guru
 
Pizentios's Avatar
 
Join Date: May 2004
Location: Brandon, Manitoba, Canada
Posts: 2,023
Rep Power: 7 Pizentios is on a distinguished road
Send a message via ICQ to Pizentios Send a message via MSN to Pizentios
http://www.perl.com/download.csp#win32

get your bins there.
__________________
Profanity is the one language that all programmers understand.

Check out my Blog <---updated Nov 30 2007!
Pizentios is offline   Reply With Quote
Old Jul 19th, 2006, 11:26 AM   #6
ReggaetonKing
Sexy Programmer
 
ReggaetonKing's Avatar
 
Join Date: Nov 2005
Location: New Jersey
Posts: 891
Rep Power: 3 ReggaetonKing is on a distinguished road
Send a message via AIM to ReggaetonKing
ActivePerl is great.
__________________
I would love to change the world, but they won't give me the source code!
ReggaetonKing is offline   Reply With Quote
Old Jul 20th, 2006, 12:37 AM   #7
bl00dninja
Programming Guru
 
bl00dninja's Avatar
 
Join Date: Oct 2004
Location: namespace std
Posts: 1,246
Rep Power: 5 bl00dninja is on a distinguished road
yeah, activestate (i think) handles that stuff mostly now. you can also search for free perl ide's that help out alot, usually small downloads. (but most require you already have perl installed...they don't come with it, i think perl itself is about 18 megs or so)
__________________
i put on my robe and wizard hat...

Have you ever heard of Plato, Aristotle, Socrates?...Morons.
bl00dninja is offline   Reply With Quote
Old Jul 20th, 2006, 5:30 AM   #8
kruptof
Professional Programmer
 
kruptof's Avatar
 
Join Date: May 2006
Location: UK - London
Posts: 330
Rep Power: 3 kruptof is on a distinguished road
okay..........thanxs for the help guys.......i have it running on win2k machine now and i have written the hello world program and i ran it from command line and it worked.........thank you...........but now is it possibel for me to embed this perl code into HTML code.

Regards, kruptof
__________________
Quote:
When I was young it seemed that life was so wonderful,a miracle, oh it was beautiful, magical.
Now watch what you say or they'll be calling you a radical,a liberal, oh fanatical, criminal. Oh won't you sign up your name,we'd like to feel you're acceptable, respectable, oh presentable, a vegetable
kruptof is offline   Reply With Quote
Old Jul 20th, 2006, 5:48 AM   #9
v0id
Hobbyist Programmer
 
Join Date: Apr 2006
Posts: 155
Rep Power: 3 v0id is on a distinguished road
I programmed Perl once, and i used the editor DzSoft Perl Editor.
Here you can see some Perl w/ HTML example.
#!/usr/bin/perl

print "Content-type: text/html\n\n";

print <<"HTML";
<html>
<head>
<title>Perl w/ HTML</title>
</head>
<body>
Perl w/ HTML
</body>
</html>
HTML
Correct me if I'm wrong, it's about an year ago i last used Perl.
__________________
-- v0id
v0id is offline   Reply With Quote
Old Jul 20th, 2006, 7:16 AM   #10
DaWei
Resident Grouch
 
DaWei's Avatar
 
Join Date: Jun 2005
Posts: 6,453
Rep Power: 10 DaWei is on a distinguished road
One doesn't embed Perl in HTML. It's the other way around. When you see that, Perl is building the HTML page. The client doesn't see any of it until it's all done and a response is sent. The correct perception of server-side/client-side is critical to success.
__________________
Abstraction doesn't make it impossible to write bad code; it makes it possible to write superior code.
Contributor's Corner: Grumpy on C++ Exceptions DaWei on Pointers
DaWei is offline   Reply With Quote
Reply

Bookmarks

« Previous Thread in Forum | Next Thread in Forum »

Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Learning Perl ReggaetonKing Perl 42 Oct 20th, 2006 4:42 PM
Perl "in" operator (or something similar?) Jessehk Perl 3 Mar 31st, 2006 6:00 PM
A simple perl script satimis Perl 3 Aug 15th, 2005 9:31 AM
Learning and Programming Perl G.I.Josh Perl 2 Mar 23rd, 2005 1:48 PM




DaniWeb IT Discussion Community
All times are GMT -5. The time now is 4:22 AM.

Powered by vBulletin® Version 3.7.0, Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Copyright ©2007 DaniWeb® LLC