--TEST-- a variable bound to a column in a result set --SKIPIF-- --FILE-- prepare($query); $stmt->execute(); $stmt->bindColumn('EmailPromotion', $emailpromo); while ( $row = $stmt->fetch( PDO::FETCH_BOUND ) ){ echo "EmailPromotion: $emailpromo\n"; } //free the statement and connection $stmt=null; $conn=null; ?> --EXPECT-- EmailPromotion: 2