-
Üyelik
18.04.2016
-
Yaş/Cinsiyet
37 / E
-
Meslek
Grafiker
-
Konum
Gaziantep
-
Ad Soyad
A** A**
-
Mesajlar
65
-
Beğeniler
16 / 4
-
Ticaret
0, (%0)
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);
?>