FW: Perl/CGI with FRAMES

2003-03-03 Thread Maureen E Fischer
- From: Dennis Stout [mailto:[EMAIL PROTECTED] Sent: Monday, March 03, 2003 1:03 AM To: Maureen E Fischer; drieux Cc: cgi cgi-list Subject: Re: Perl/CGI with FRAMES > Working with Frames will be messy any way you cut it. So messy in fact, I found SSI to be a much nicer way to do things. That

Perl/CGI with FRAMES

2003-03-01 Thread Maureen E Fischer
I have recently finished an online database system using perl/cgi. It has been suggested that it would lend itself to using HTML frames. I have a main menu that could always be shown and what is selected from it would refresh another frame. I have never used this before but what I see is iden

RE: setting curser position (focus)

2002-10-02 Thread Maureen E Fischer
Thank you, it worked like magic. I'll have to read my Javascript book now so I know what it means. Maureen -Original Message- From: Bob Showalter [mailto:[EMAIL PROTECTED]] Sent: Tuesday, October 01, 2002 12:11 PM To: 'Maureen E Fischer'; [EMAIL PROTECTED] Subject: RE:

setting curser position (focus)

2002-10-01 Thread Maureen E Fischer
I am trying to figure out how to get the curser to sit at the first entry field so the user doesn't have to position it. My application is Perl/CGI. I have seen some information about how to do this using javascript. I went out and got the O'Reilly book on javascript and it's the size of a

RE: Indexing multiple records for potential updates

2002-09-10 Thread Maureen E Fischer
TECTED]] Sent: Tuesday, September 10, 2002 12:54 AM To: Maureen E Fischer Subject: Re: Indexing multiple records for potential updates Hi Maureen , All you need is a PRIMARY KEY (eg an auto_increment column) in your MySQL table. Then, places each row in it's own form.

Indexing multiple records for potential updates

2002-09-10 Thread Maureen E Fischer
Thanks so much for your help. This makes a lot of sense to me. Maureen fliptop wrote: if you set up your form so that each record has the same params, then they should be submitted in order and you can treat each one as an array. for example (untested, and using limited html):

Indexing multiple records for potential updates

2002-09-09 Thread Maureen E Fischer
Hello, I'm working on a Perl CGI program that must update A mysql database. The user enters key information that Is used to display zero to many records. Then the user Can update or delete any number of records displayed. I sucessfully displayed multiple records and have output Them su

mysql where statement in select

2002-07-12 Thread Maureen E Fischer
Hello, Is there a way of varying the key fields in a where statement? I don't mean putting a variable in as the VALUE of the key. I know you can using a "?". What I want to do is allow the user to see all of a particular set of records (primary key being client) if the date is equal to the curre

Re:Perl CGI FORM statement

2002-07-03 Thread Maureen E Fischer
To those who emailed me thanks for helping me figure this out. My code doesn't look as pretty. I had to remove all of the PrintTag's and output each line of HTML with a print, double quotes and semicolon, but everything is now working. Maureen -- To unsubscribe, e-mail: [EMAIL PROTECTED] For

Perl CGI FORM statement

2002-07-02 Thread Maureen E Fischer
Hello, My question is about CGI's form statement. I wrote a program that outputs three fields. Two of the three are fields from which one option is selected. The number and type of options presented are based on the user identified in the environmental variables. I got the screen to pri

fetchall problem

2002-06-20 Thread Maureen E Fischer
Hello, I am stuck on a bug in my perl cgi program that uses a mysql database. In executing the following code I am getting a message in the dump that the fetch failed --fetch () without execute () would anyone be able to see what I am doing wrong or be able to give me any idea of how to go about

RE: Using strict and a configuration file?

2002-06-10 Thread Maureen E Fischer
I had this same question answered on the perl beginners list. Object oriented programming was recommended. Someday I want to learn about that But for now what I did was give the configuration file and the scripts that use it the same package name and then I defined these variables as global Vari

Perl/CGI mysql book

2002-06-05 Thread Maureen E Fischer
I am writing my first CGI application and after analysis of the data structure that is required I determined that a DBM file would not be sufficient. Mysql was suggested to me. Unfortunately I could not find A book that seemed based on Perl and sql. Everything I found connected Mysql to PHP -