PDO::FETCH_OBJ -> Returns an anonymous object with property names that correspond to the column names returned in your result set. For example:
Array ( [0] =>
You can see in what you pasted that $results is an array of objects, so you need to specify which item in the array to get a proper result for email.
Example:
print_r($results[0]->email);