RE: Problems getting a simple form to work.

2003-04-04 Thread Rob Benton
It's OK, my feelings aren't hurt :) On Fri, 2003-04-04 at 15:45, Hughes, Andrew wrote: > I think you meant, "Thanks, Rob." > > Andrew > > -Original Message- > From: Mike Butler [mailto:[EMAIL PROTECTED] > Sent: Friday, April 04, 2003 4:45 PM >

RE: Problems getting a simple form to work.

2003-04-04 Thread Rob Benton
Give this a shot and see if it errors: use CGI; my $query = new CGI; my %params = $query->Vars; my $username = $params{'username'}; On Fri, 2003-04-04 at 15:29, Mike Butler wrote: > Thanks, Andrew. I added CGI::Carp qw(fatalsToBrowser); to the script. That's > a big help. The error message tha

Re: Problem with regular expressions!!!

2003-03-19 Thread Rob Benton
How does it translate? * = 0 or more of preceding char ? = 1 or 0 of preceding char *? = ??? On Tue, 2003-03-18 at 21:41, Michael Kelly wrote: > On Tue, Mar 18, 2003 at 05:53:45PM -0600, Rob Benton wrote: > > It looks odd to me b/c * and ? are both quantifiers... > > * and ?

Re: Problem with regular expressions!!!

2003-03-18 Thread Rob Benton
It looks odd to me b/c * and ? are both quantifiers which usually triggers an error when you try to run it. See if this works for you: $file_completename =~ /([^.]*)\.(.*)/; On Tue, 2003-03-18 at 15:28, Marcelo Taube wrote: > As u probably have guessed some part of my code is not working proper

passing cgi params

2003-03-15 Thread Rob Benton
If I use: my $query = new CGI; my %params = $query->Vars; to grab the incoming parameters is it safe to just send all of them over to a new cgi script like this: my $form = CGI::FormBuilder->new( fields => \%params, method => 'POST'); print $form->render(); Or will that pass along built-in para

CGI::FormBuilder

2003-03-14 Thread Rob Benton
Is there a way to print a 'button' input type without a label next to it using the FormBuilder object? I can't find the right combination. I always wind up with this +---+ Next |Next | +---+ and what I want is +---+ |Next | +

RE: html table limit

2003-03-12 Thread Rob Benton
Scroll up and down to the bottom of the page then see if the borders screw up. On Wed, 2003-03-12 at 14:57, Bob Showalter wrote: > Rob Benton wrote: > > Mozilla, Konqueror, Opera, and IE all act the same way. Check out this > > page to see what I mean. The top, bottom, and ri

RE: html table limit

2003-03-12 Thread Rob Benton
1000+ rows is a rare situation on my page but in can happen. It's a dbi script. I couldn't really think of a better design but I am open to suggestions... On Wed, 2003-03-12 at 15:07, Brett W. McCoy wrote: > On 12 Mar 2003, Rob Benton wrote: > > > > > Is there a li

RE: html table limit

2003-03-12 Thread Rob Benton
, 2003-03-12 at 12:02, Bob Showalter wrote: > Rob Benton wrote: > > Is there a limit to how many rows you can put in an html table? I > > can't find anything wrong with my script but when I get over 1000 > > rows or so in my tables they start drawing weird borders. >

html table limit

2003-03-12 Thread Rob Benton
Is there a limit to how many rows you can put in an html table? I can't find anything wrong with my script but when I get over 1000 rows or so in my tables they start drawing weird borders. -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

CGI::FormBuilder parsing

2003-03-10 Thread Rob Benton
I've noticed that when using the formbuilder that field names that have underscores in them are replaced with spaces. And also that if a field has a '.' in it, that . and everything after are truncated when printing. Is there any way to modify this? -- To unsubscribe, e-mail: [EMAIL PROTECTED