Re: RE: using CGI to build a table

2004-01-26 Thread smrtalec
after mulling over your responce for a while a trying several versions. I finally have a working script that I understand so thank you very much. now I have to figure out the forms section and passwording. The only question I have is security wit respect to passwords. The options I have is en

Weekly list FAQ posting

2004-01-26 Thread casey
NAME beginners-faq - FAQ for the beginners-cgi mailing list 1 - Administriva 1.1 - I'm not subscribed - how do I subscribe? Send mail to <[EMAIL PROTECTED]> You can also specify your subscription email address by sending email to (assuming [EMAIL PROTECTED] is your email addres

RE: using CGI to build a table

2004-01-26 Thread Charles K. Clarkson
smrtalec <[EMAIL PROTECTED]> wrote: : : before I begin thanks for taking the time to help me out. You're welcome. That's what we are here for. : > print : > header(), : > start_html( 'This page has no title' ), : > gen_table( '%Ave%' ), : > end_html(); : > :

Apache::session questions

2004-01-26 Thread Kenneth W. Craft MCP
I want to allow my users to login to the site and give them access to forums, classifieds, and other "user specific" information. I've been trying to figure this out all week, butt have not come up with a workable solution. Here are a few questions: 1. How do I use .htpasswd file with a MySQL Data

Re: Recommendations on Programming Style

2004-01-26 Thread Wiggins d Anconia
> Question #1: Does anyone have any favorite document > that is a style guide for perl programmers? There are > entire books on the subject of style for C++ > programmers, I've not seen any for perl, though. > Well there is the perlstyle doc page, perldoc perlstyle that gives general suggestio

Re: using CGI to build a table

2004-01-26 Thread smrtalec
before I begin thanks for taking the time to help me out. > print > header(), > start_html( 'This page has no title' ), > gen_table( '%Ave%' ), > end_html(); > > > sub gen_table { > > my $search = shift; > > # define table heading > my @rows= th( [ 'i

RE: using CGI to build a table

2004-01-26 Thread Charles K. Clarkson
smrtalec <[EMAIL PROTECTED]> wrote: : : #! /usr/bin/perl -w You should add: use strict; : use DBI; : use CGI qw/:standard :html3/; : use CGI::Carp qw(fatalsToBrowser); This is great for debugging. Make sure you remove it once you go into production. When outputting to the browser