RE: cgi in the middle of HTML page

2002-02-05 Thread Hanson, Robert
D]; [EMAIL PROTECTED] Subject: RE: cgi in the middle of HTML page At 12:55 PM 2/5/02 -0500, Hanson, Robert wrote: >As far as using this method over HTML::Template >you need to be able to predict future expansion to your code (which may be >impossible), and as long as you won't need

RE: cgi in the middle of HTML page

2002-02-05 Thread Marty Landman
At 12:55 PM 2/5/02 -0500, Hanson, Robert wrote: >As far as using this method over HTML::Template >you need to be able to predict future expansion to your code (which may be >impossible), and as long as you won't need other features (or don't mind >rolling your own) then Marty's is as good as any

RE: cgi in the middle of HTML page

2002-02-05 Thread Hanson, Robert
able in certain situations). Rob -Original Message- From: Marty Landman [mailto:[EMAIL PROTECTED]] Sent: Tuesday, February 05, 2002 12:32 PM To: [EMAIL PROTECTED]; [EMAIL PROTECTED] Subject: Re: cgi in the middle of HTML page At 11:09 AM 2/5/02 -0500, you wrote: >I want to have a we

Re: cgi in the middle of HTML page

2002-02-05 Thread Greg Jetter
On Tuesday 05 February 2002 07:09 am, Al Hospers wrote: > I want to have a web page where a CGI generated table appears in the > midst of a bunch of standard HTML. I already have the table data being > pulled from a database & generating a layout that looks good. however, > I would prefer not to g

Re: cgi in the middle of HTML page

2002-02-05 Thread Marty Landman
At 11:09 AM 2/5/02 -0500, you wrote: >I want to have a web page where a CGI generated table appears in the >midst of a bunch of standard HTML. I already have the table data being >pulled from a database & generating a layout that looks good. however, >I would prefer not to generate the entire page

RE: cgi in the middle of HTML page

2002-02-05 Thread Al Hospers
thanks for all the suggestions. I'm going to look them all over this afternoon & I'll let you know what I decide on. cheers, Al -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: cgi in the middle of HTML page

2002-02-05 Thread Jan Gruber
Hi, Al ! > I would prefer not to generate the entire page in code if possible. > yes I know I could do it all using CGI.pm but if I do then the > client/designer will have to get into the code to change the layout of > the page & that's not a really good thing. Visit your local CPAN mirror for Ma

RE: cgi in the middle of HTML page

2002-02-05 Thread Hanson, Robert
If all you need to do is insert a table you could use a server side include (depending on your web server). It might look like this... You would place that where you wanted the table to appear and the web server would insert it right before serving the page. The other option is to use a templ