http://qs321.pair.com?node_id=513052


in reply to Re: how do get value of mysql column
in thread how do get value of mysql column

using dbi:
$sth = $dbh->prepare("SELECT column FROM table"); $sth->execute; $column_value = $sth->fetchrow;