On Sat, 15 Mar 2003 10:50:54 -0600, [EMAIL PROTECTED] (David
Gilden) wrote:
> # Is the code below -- better or correct?
>
> foreach my $bag (@bags){
> $bags_ordered{$bag} = $bag unless exists $bags_ordered{$bag}
> }
You can also try:
$bags_ordered{$bag} = $bags_ordered{$bag} || $bags;
#or
$bag
I'm working on a site statistics script, and the probably most important
thing is to know the referring site... for now i've been using
$ENV{'HTTP_REFERER'} or CGI->referer(), wich i guess work the same way
and give the same result...
Now this might be a lost case, but i'll ask it anyway: one of
are you using the target attribute?
-Original Message-
From: mel awaisi [mailto:[EMAIL PROTECTED]
Sent: Saturday, March 15, 2003 6:10 PM
To: [EMAIL PROTECTED]
Subject: help needed in frames with php
Hi,
help needed in frames with php
I have been trying to do this for sometime now, and
> "Mel" == Mel Awaisi <[EMAIL PROTECTED]> writes:
Mel> help needed in frames with php
php questions are not really appropriate on a Perl help list,
unless there's some Perl component as well.
--
Randal L. Schwartz - Stonehenge Consulting Services, Inc. - +1 503 777 0095
<[EMAIL PROTECTED]>