Allah razı olsun çözdüm kardeş

try {
$db = new PDO("mysql:host=localhost;dbname=ahmet", "ROOT", "123456");
} catch ( PDOException $e ){ print $e->getMessage();
}
function blok($no) {
global $db;
$Veri = $db->prepare("select * from bloklar where id=:gelen");
$Veri->execute(array("gelen" => "$no"));
$islem = $Veri->fetch();
return $islem["aciklama"];
}
echo blok(1);
echo blok(2);
?>