Re: libwww example / tutorial

2002-11-24 Thread zentara
On Sat, 23 Nov 2002 05:07:15 -0800 (PST), [EMAIL PROTECTED]
(Admin-Stress) wrote:

Hi,

Anyone know any URL about libwww example / tutorial? 
I cant find decent source. I just want to learn how to GET an ouput from a website 
and parse the

Read perldoc lwpcook.


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




scrolling list population

2002-11-24 Thread Ramon Hildreth
Hi, two part question.

1. what is the non-object syntax for a scrolling list
2. how do I populate the values from an array

Thanks.

Ramon Hildreth
---
[ www.subudusa.org ] [ www.subudseattle.org ]
[ www.ramonred.com ]




clarification scrolling list (code incl)

2002-11-24 Thread Ramon Hildreth
Hi,
This is a clarification of a previous question about a scrolling list.
here is my code:
--
city name, scrollinglist( -name=city,
 -override='1',
 -values=@cities,
 -multiple='1',
---
as it stands now, the values that are in the array @cities, display on
one line, instead of making a drop
down list. How can I get the values in my @cities array to make a drop
down list?

Thanks.




Ramon Hildreth
---
[ www.subudusa.org ] [ www.subudseattle.org ]
[ www.ramonred.com ]




Re: tutorials

2002-11-24 Thread Ovid
--- [EMAIL PROTECTED] wrote:
 does anybody have any really good sites or books that deal just with CGI as 
 in applications to web programming. Almost all i have found in the book area 
 is how to code perl in the command line interface. I looking for just web 
 based stuff.
 
 Thanks

You can also check out http://users.easystreet.com/ovid/cgi_course

I assume that you already know Perl and know *some* HTML, but that's about it.

I think it's fairly easy to read and has gotten some good reviews.  Let me know what 
you think.

Cheers,
Ovid

=
Ovid on http://www.perlmonks.org/
Web Programming with Perl:  http://users.easystreet.com/ovid/cgi_course/
Silence Is Evil: http://users.easystreet.com/ovid/philosophy/decency.txt

__
Do you Yahoo!?
Yahoo! Mail Plus – Powerful. Affordable. Sign up now.
http://mailplus.yahoo.com

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




Re: clarification scrolling list (code incl)

2002-11-24 Thread fliptop
On Sun, 24 Nov 2002 at 09:40, Ramon Hildreth opined:

RH:Hi,
RH:This is a clarification of a previous question about a scrolling list.
RH:here is my code:
RH:--
RH:city name, scrollinglist( -name=city,
RH: -override='1',
RH: -values=@cities,
RH: -multiple='1',

you need to reread the documentation.  type

perldoc CGI

and go to the section titled CREATING A SCROLLING LIST.  you're not 
calling the correct method, and you're supposed to pass an array ref.


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




RE: clarification scrolling list (code incl)

2002-11-24 Thread Ramon
Thanks, after checking the documentation I came up with this, still not
working
my %labels = ( 'Seattle'='Subud Seattle', 'Portland='Subud Portland');
---
city: , scrolling_list( -name=city,
  -override='1',
  -size='1',
  -labels=\%labels,
---
Thanks 

-Original Message-
From: fliptop [mailto:[EMAIL PROTECTED]] 
Sent: Sunday, November 24, 2002 2:47 PM
To: Ramon Hildreth
Cc: [EMAIL PROTECTED]
Subject: Re: clarification scrolling list (code incl)


On Sun, 24 Nov 2002 at 09:40, Ramon Hildreth opined:

RH:Hi,
RH:This is a clarification of a previous question about a scrolling
list. RH:here is my code:
RH:--
RH:city name, scrollinglist( -name=city,
RH: -override='1',
RH: -values=@cities,
RH: -multiple='1',

you need to reread the documentation.  type

perldoc CGI

and go to the section titled CREATING A SCROLLING LIST.  you're not 
calling the correct method, and you're supposed to pass an array ref.


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






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