pateketrueke, segun entendi en el manual, entendi algo asin.
Código PHP:
Ver original<?php
$sql="select count (*) from clientes where email=?";
$stmt=$db->prepare($sql);
$stmt->execute(array($email)); $filas=$stmt->columnCount();
echo $filas;
?>
Me tendria que dar el numero de filas, pero siempre me da 0, que hice mal.