> I'm very beginer in perl...

Welcome

> before this I did know asp and java and java
> script for client side...

How did you forget them again?  ("...I did know...")

> now I want switch to perl language and I have
> several easy question about that ...

<RANT = "pedantic">
perl = compiler/intepreter that runs Perl code
Perl = the language itself
</RAND>

> 1 - my platform is win98 and I want a web server
> which can be run perl in itself ...

You mean Apache and mod_perl?  www.apache.org

Note, however, that Windows 98 isn't recommended
for a server enviroment - they spout some
meaningless mubblings about lack of "security"
in Windows 9x.

Obviously, they are wrong.  That's why Windows
has virus checkers to stop 50000+ viruses.

> 2 - please send me a little sample which can be
> show a html page for example there is "test.pl"
> and user by call that can be see a html page I
> itself browser , I want only a little sample page
> ...

#!/usr/bin/perl -wT

print "Content: text/html\n";
print "<HTML><BODY>Hello World!!!</BODY></HTML>";

> 3 - I want know, are there any security for perl
> script?  For example in java there are byte codes
> ... I want know just perl is a scripting language ?

Perl is a better language for writing secure programs
thanks to taint mode.  Java doesn't have this.

perldoc perlsec

> 4 - I want free ebook for beginners in perl, and
> learning step by step.

If you have other programming experiance then the
normal documentation at:

www.perldoc.com

is probably enough.

Ideally, you purchase the book written by Perl's
authors "Programming Perl" published by O'reilly.
Some people (like me) assume that nobody programs
Perl without a copy - thus sometimes you might be
given a reference to it.

Obviously, www.google.com will turn up some... of
various levels of quality.

Jonathan Paton

__________________________________________________
Do You Yahoo!?
Everything you'll ever need on one web page
from News and Sport to Email and Music Charts
http://uk.my.yahoo.com

-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to