particular CGI (same message as 'no subject' from me)

2001-11-25 Thread sam x lehmer

I am developing a community calendar for a local youth group.  I want to be able to 
enter information into my 'calendar' web page; and have that information be saved in a 
file for later retrieval and placement into the 'calendar' web page.  Is there a CGI 
script available that will write input values to a file?  Or is there a way that I can 
use Javascript to make input variables 'persistent'.  You can see the early stage of 
this 'calendar' at:
 http://www.angelfire.com/folk/samlehmer/dynamic/community_calendar/phase_2.html.

The password is success



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




Re: particular CGI (same message as 'no subject' from me)

2001-11-25 Thread _brian_d_foy

In article [EMAIL PROTECTED], [EMAIL PROTECTED] wrote:

 I am developing a community calendar for a local youth group.  I want 
 to be able to enter information into my 'calendar' web page; and have 
 that information be saved in a file for later retrieval and placement 
 into the 'calendar' web page.  Is there a CGI script available that 
 will write input values to a file? 

CGI.pm has features for sticky values and persistence.
-- 
brian d foy [EMAIL PROTECTED] - Perl services for hire
CGI Meta FAQ - http://www.perl.org/CGI_MetaFAQ.html
Troubleshooting CGI scripts - http://www.perl.org/troubleshooting_CGI.html

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




Re: ascii and binary

2001-11-25 Thread Randal L. Schwartz

 Zaka == Zaka rias [EMAIL PROTECTED] writes:

Zaka let's say i want convert A to binary, the first step
Zaka is finding value of A = 65, and then convert 65 to
Zaka binary,

Zaka 65 = 32 x 2 + 1
Zaka 32 = 16 x 2 + 0
Zaka 16 = 8 x 2 + 0
Zaka 8 = 4 x 2 + 0
Zaka 4 = 2 x 2 + 0
Zaka 2 = 1 x 2 + 0
Zaka 1 = 0 x 2 + 1

Zaka so 65 = 101, is that right ?

$ perl -le 'print unpack B*, A'
0101
$ perl -le 'print unpack B*, ABC'
010101100111

Does that help?

-- 
Randal L. Schwartz - Stonehenge Consulting Services, Inc. - +1 503 777 0095
[EMAIL PROTECTED] URL:http://www.stonehenge.com/merlyn/
Perl/Unix/security consulting, Technical writing, Comedy, etc. etc.
See PerlTraining.Stonehenge.com for onsite and open-enrollment Perl training!

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