JK Web Studio is a small web design studio, specializing in efficient and user friendly solutions.

Contact us at info@jkwebstudio.com

Archive for the ‘perl’ Category

Using Mason Methods

Wednesday, September 30th, 2009

<& SELF:my_method,
arg1 => $arg1,
arg2 => $arg2,
&>

Easy way to get single value out of db

Thursday, July 30th, 2009

my $query = “SELECT COUNT(*) AS ‘c’ FROM db.table”;
my $value = $dbh->selectrow_array($query);