$sth = $dbh->prepare("SELECT ad AS yeni_ad, renk AS yeni_renk FROM meyveler");
$sth->execute();

$result = $sth->fetchAll();
print_r($result);
?>