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;