Why is my PDO fetch not returning any rows from the table?
$sql = "SELECT * from ts_rounds WHERE current=:current";
$stm = $pdo->prepare( $sql );
$stm->execute( array( ':current' => 1 ) );
$rows = $stm->fetch();
echo $row["name"];