try {
$ilt = $db->prepare("Select * from Yoneticiler");
$son = $ilt->execute();
if ($son) {
while ($row = $ilt->fetch(PDO::FETCH_ASSOC)) {
$tel = trim($row["tel"], "\t");
$gsm = trim($row["gsm"], " ");
echo '
';
}
}
} catch (PDOException $e) {
echo '';
}
?>