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
>
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
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 ?
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
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
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 |
+
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
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
, 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.
>
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]
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
11 matches
Mail list logo