Re: Creating a Web Database Search Application

2006-02-21 Thread BÁRTHÁZI András
Hi, With so few fields, sticking with one report isn't out of the question. Don't know if you're using this technique: my $lname = $q->param('lname') || '%'; So all fields not filled/selected by the user are wildcards by default. A completely empty form pulls all data in the relevant tables.

Re: Creating a Web Database Search Application

2006-02-21 Thread Jonathan Mangin
- Original Message - From: "Douglas S. Davis" <[EMAIL PROTECTED]> To: Sent: Tuesday, February 21, 2006 3:58 PM Subject: Creating a Web Database Search Application > Hello, > > I commonly create webpages that need to search through a MySQL > database and then display the results to the

Re: Creating a Web Database Search Application

2006-02-21 Thread Jonathan Mangin
- Original Message - From: "Douglas S. Davis" <[EMAIL PROTECTED]> To: Sent: Tuesday, February 21, 2006 3:58 PM Subject: Creating a Web Database Search Application > Hello, > > I commonly create webpages that need to search through a MySQL > database and then display the results to the