From ealonw at yahoo.com Thu Jul 23 17:02:37 2009 From: ealonw at yahoo.com (ealonw) Date: Thu, 23 Jul 2009 17:02:37 -0700 (PDT) Subject: [Oc-pm] Im new to PM Message-ID: <658699.82683.qm@web36905.mail.mud.yahoo.com> Hello PM! Does anyone have a good tutorial on perl pagination using DBI? I have Mysql running and I want to paginate the?SELECT to?HTML -------------- next part -------------- An HTML attachment was scrubbed... URL: From chris at chrisgrau.com Thu Jul 23 17:18:35 2009 From: chris at chrisgrau.com (Chris Grau) Date: Thu, 23 Jul 2009 17:18:35 -0700 Subject: [Oc-pm] Im new to PM In-Reply-To: <658699.82683.qm@web36905.mail.mud.yahoo.com> References: <658699.82683.qm@web36905.mail.mud.yahoo.com> Message-ID: <20090724001835.GA30599@chrisgrau.com> Welcome! On Thu, Jul 23, 2009 at 05:02:37PM -0700, ealonw wrote: > Does anyone have a good tutorial on perl pagination using DBI? I have > Mysql running and I want to paginate the SELECT to HTML The last time I had to paginate database results on HTML, I used the Data::Page[1] module. If you're asking about just getting the database results into HTML in the first place, there are a handful of frameworks that specialize in this, Maypole and Catalyst come immediately to mind. Searching for "perl crud[2]" may turn up some information on that. I've generally never needed to dump data directly to the web, and when I've done it for testing, it's never been fancier than, $sth->execute; $sth->bind_columns( \$field1, ... ); while ( $sth->fetch ) { print q(); print qq($field1); # etc. print q(); } [1] http://search.cpan.org/dist/Data-Page/ [2] Create, Read, Update, and Delete -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 189 bytes Desc: not available URL: From btilly at gmail.com Wed Jul 29 07:18:47 2009 From: btilly at gmail.com (Ben Tilly) Date: Wed, 29 Jul 2009 07:18:47 -0700 Subject: [Oc-pm] Perlmonks compromised Message-ID: If you're a janitor or are on Saints In My Book then your password is being circulated in a file named zf05.txt. If not, someone still has it. Perlmonks may still be compromised, so you should change your password there, then be prepared to change it again. And, of course, you should change that password anywhere else that you used it. Ben