in reply to Re: how do get value of mysql columnin thread how do get value of mysql column
$sth = $dbh->prepare("SELECT column FROM table"); $sth->execute; $column_value = $sth->fetchrow; [download]