Michael, The fatal errors from yesterday are fixed. When I run this as a cgi-bin it runs fine.
The HTML code that I am selecting looks like this: <th><form name='A' method='post'> <input type=hidden name=region value='Atlantic'> <input type=hidden name=deptLtr value='A'> <input type=hidden name=set value='0'> <a href="javascript: document.A.submit()">A</a> </form> </th> <th><form name='B' method='post'> <input type=hidden name=region value='Atlantic'> <input type=hidden name=deptLtr value='B'> <input type=hidden name=set value='0'> <a href="javascript: document.B.submit()">B</a> </form> ... Etc (for each letter of the alphabet) The value of region is Atlantic <- GOOD The value of set is 0 SELECT * FROM atlantic_rr WHERE dept REGEXP '^A' ORDER BY dept, pay_list LIMIT 0, 400 The value of region is Atlantic The value of deptLtr is I <- GOOD The value of set is 0 SELECT * FROM atlantic_rr WHERE dept REGEXP '^I' ORDER BY dept, pay_list The value of region is Atlantic The value of deptLtr is O <- GOOD The value of set is 0 SELECT * FROM atlantic_rr WHERE dept REGEXP '^O' ORDER BY dept, pay_list The value of region is Atlantic <- GOOD The value of set is 0 SELECT * FROM atlantic_rr WHERE dept REGEXP '^A' ORDER BY dept, pay_list LIMIT 0, 400 The value of region is Atlantic The value of deptLtr is K <- GOOD The value of set is 0 SELECT * FROM atlantic_rr WHERE dept REGEXP '^K' ORDER BY dept, pay_list The value of region is Atlantic The value of deptLtr is F <- GOOD The value of set is 0 SELECT * FROM atlantic_rr WHERE dept REGEXP '^F' ORDER BY dept, pay_list The value of region is Atlantic The value of deptLtr is F <- ERROR I selected C The value of set is 0 SELECT * FROM atlantic_rr WHERE dept REGEXP '^F' ORDER BY dept, pay_list The value of region is Atlantic The value of deptLtr is O <- ERROR I selected C The value of set is 0 SELECT * FROM atlantic_rr WHERE dept REGEXP '^O' ORDER BY dept, pay_list -----Original Message----- From: Michael Peters [mailto:[EMAIL PROTECTED] Sent: Friday, June 13, 2008 4:21 PM To: Brian Gaber Cc: Dondi Stroma; modperl@perl.apache.org Subject: Re: CGI.pm param and mod_perl Brian Gaber wrote: > Here is the log you asked for: We need a little more context than that. For instance I don't see where it actually has the fatal error you mentioned from the earlier posts. Also, if you could annotate it with what the values of those params "should" be. But the most important thing you can do is to reduce the problem down to the smallest possible code that still has the fatal error. Not only will it help us help you, but 90% of the time when I do that I figure out what the problem was on my own. -- Michael Peters Plus Three, LP