jiqiang yao wrote:
hi,
I use apacher 2.0. I set the document root as
"/myhome/web".
Anything ending in .html can be public. However, the
folder within this directory are not public,
although
I set the mode to 755.
Can anybody can help me?
yao
If anyone could please explain what I missed on the differences between
( ) array's and [ ] array's, I'd appreciate it.
You want instead beginners@perl.org
() is an ARRAY
[] is a reference to an array.
my @a = (1,2,3);
my $b = [1,2,3];
my $r = [EMAIL PROTECTED];
print @a;
print @$b;
print $r;
On 7/13/06, Matthew <[EMAIL PROTECTED]> wrote:
And for cookie points, if anyone knows how to do a real struct in
XMLRPC, that would be awesome.
how about SOAP::Lite?
--
will trillich
"The great enemy of clear language is insincerity." -- Eric Arthur
Blair (George Orwell)
um, lemme clarify a bit there--
On 7/13/06, will trillich <[EMAIL PROTECTED]> wrote:
() is a LIST of values, perfect for plopping into an array:
@a = (qw/one two three/, 22/7, pi())
a list is a series of values. an array is a place-holder for a series of values.
(1..99,'a'..'z',@stuff,qw
On 7/13/06, Matthew <[EMAIL PROTECTED]> wrote:
Apologies for this being off-topic, but this is the best "perl resource"
I have.
my $test = [2, 4, 8];
print $test;
>Array(0x3038303)
Oh? That's an array format. OK. Try this:
my @test = (2, 4, 8);
print @test;
>248
??? Confused.
If anyone
hi,
I use apacher 2.0. I set the document root as
"/myhome/web".
Anything ending in .html can be public. However, the
folder within this directory are not public,
although
I set the mode to 755.
Can anybody can help me?
yao
__
Do You Y
On Thu, 2006-07-13 at 16:51 -0500, Matthew wrote:
> If anyone could please explain what I missed on the differences between
> ( ) array's and [ ] array's, I'd appreciate it.
() is an array
[] is a reference to an array, also known as a "pointer" to an array.
-Max
--
http
Apologies for this being off-topic, but this is the best "perl resource"
I have.
I've been trying for the past 2 hours to get Frontier::Client working
(XML-RPC). I originally tried RPC::XML but that dude's documentation
was lacking some serious examples. So is F::C, but I found several
HO
Heiko Weber wrote:
cgi-code I must use a taited variable. But how to find the line of code ?
thanks for the hint. I added a -section in httpd.conf:
use Carp;
$SIG{__DIE__} = sub { confess shift };
$SIG{__WARN__} = \&Carp::cluck;
Am Freitag, 7. Juli 2006 19:08 schrieb Philip M. Gollucci:
> Heiko Weber wrote:
> > Sure, I know what "perl taint" is ... so somewhere in my own written
> > cgi-code I must use a taited variable. But how to find the line of code ?
> > In the errorlog there only the above line, no more deeper/detail
hi,
I use apacher 2.0. I set the document root as
".../web".
Anything ending in .html can be public. However, the
folder within this directory are not public, although
I set the mode to 755.
Can anybody help me?
yao
__
Do You Yahoo!?
Tired of spam
11 matches
Mail list logo