Re: Unexpected CGI and HTML

2004-06-25 Thread Randal L. Schwartz
> "Sean" == Sean Davis <[EMAIL PROTECTED]> writes: Sean> My misconception was that some cgi.pm methods return strings, and some Sean> return arrays. Well, none of them return "arrays". You can't return an array. You can return only a list or a scalar, as selected by the context of invocatio

Re: Unexpected CGI and HTML

2004-06-25 Thread Sean Davis
Thanks for the replies, William and Wiggins. My misconception was that some cgi.pm methods return strings, and some return arrays. I was assuming that all were strings--performing a join on the arrays to get simple strings fixes the problem. Sean On 6/24/04 2:44 PM, "Wiggins d Anconia" <[EMAIL

Re: Unexpected CGI and HTML

2004-06-24 Thread William McKee
On Thu, Jun 24, 2004 at 01:42:35PM -0400, Sean Davis wrote: > >From where is the tagset coming? It isn't a problem here, of > course, but if I try to use this with HTML::template, it is causing > problems. Any ideas? Hi Sean, That's a good question. I don't understand what problems you forsee

Re: Unexpected CGI and HTML

2004-06-24 Thread Wiggins d Anconia
> I have an odd result (at least to me) that I can't explain. I am using > CGI::Application and have the following subroutine that returns $output, the > html for the page (only a toy example, but illustrates the point, I think): > > sub return_probe_details { > # Get OligoMap object (actually,

Unexpected CGI and HTML

2004-06-24 Thread Sean Davis
I have an odd result (at least to me) that I can't explain. I am using CGI::Application and have the following subroutine that returns $output, the html for the page (only a toy example, but illustrates the point, I think): sub return_probe_details { # Get OligoMap object (actually, just inheri

Re: perl cgi and html table td tags..

2002-07-06 Thread Octavian Rasnita
AIL PROTECTED]>; <[EMAIL PROTECTED]> Sent: Friday, July 05, 2002 11:01 PM Subject: Re: perl cgi and html table td tags.. First, I have to declare that below are my own opinion only. Second, I would like to give you a pure HTML sample for a 2x2 table. Col 1 Row 1 Col 2 Row 1 Co

Re: perl cgi and html table td tags..

2002-07-05 Thread Connie Chan
HTML So, reserve CGI.pm for just handling Form data process and header printing and whatever functions, beside Table and Frame. Rgds, Connie - Original Message - From: "jmpond" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Saturday, July 06, 2002 2:18

perl cgi and html table td tags..

2002-07-05 Thread jmpond
Hello List, Here is my issue. Trying to use perl/cgi script to build a table in a form. Building the table is straight forward as the code snippet below works. The problem is -- How do I set up the code to align cell 1 right and align cell 2 left? Or more generally how do I set up the code

RE: cgi and html

2001-08-15 Thread Joel Hughes
--- From: Boex,Matthew W. [mailto:[EMAIL PROTECTED]] Sent: 15 August 2001 21:22 To: CGI Beginners Subject: RE: cgi and html joel, i guess i didn't word that correctly. i have a set of cgi scripts, each of them need to be able to follow state information using hidden tags. i need to add so

RE: cgi and html

2001-08-15 Thread Boex,Matthew W.
Wednesday, August 15, 2001 3:01 PM To: Boex,Matthew W.; CGI Beginners Subject: RE: cgi and html Max, Embperl wont "break out the html from the cgi" if I'm guessing that you want to seperate the server side code from the html presentation. Embperl is embedded perl in html pages (mu

RE: cgi and html

2001-08-15 Thread Joel Hughes
riginal Message- From: Boex,Matthew W. [mailto:[EMAIL PROTECTED]] Sent: 15 August 2001 20:13 To: CGI Beginners Subject: RE: cgi and html i have been looking around a little and found Embperl. i plan to move to mod_perl in the near future but have a bunch of cgi scripts that i want to add h

RE: cgi and html

2001-08-15 Thread Boex,Matthew W.
mod_perl for that matter? matt -Original Message- From: Curtis Poe [mailto:[EMAIL PROTECTED]] Sent: Thursday, August 02, 2001 5:30 PM To: CGI Beginners Subject: Re: cgi and html --- "Boex,Matthew W." <[EMAIL PROTECTED]> wrote: > > i need to incorporate a good de

RE: cgi and html

2001-08-04 Thread Brian
t; my $template = ""; > open(HTML, $t) || print "The file you are accessing cannot > be opened"; > while(){$template .= $_;} > close(HTML); > return $template; > } > > Then when I update the Dreamweaver template, the CGI's all > get the updates >

Re: cgi and html

2001-08-03 Thread Ryan Davis
- Original Message - From: Vinicius Jose Latorre <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Cc: <[EMAIL PROTECTED]> Sent: Friday, August 03, 2001 7:35 AM Subject: Re: cgi and html > > --- "Curtis Poe" <[EMAIL PROTECTED]> wrote: > > > ---

Re: cgi and html

2001-08-02 Thread Curtis Poe
--- "Boex,Matthew W." <[EMAIL PROTECTED]> wrote: > > i need to incorporate a good deal of html into my cgi scripts. what are my > options other than Html::Mason. i know that will do the job but just want > to compare against any other solutions out there > > matt Two options come to mind