Merhaba arkadaşlar mysql ile bağlantı oluşturuyorum fakat bana bu hatayı veriyor:
Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in C:\wamp\www\10-boncuk\script\vt.php on line 11
hata alıyorum fakat kodlar çalışıyor @ işareti koyunca sorunsuz devam ediyorum. Bu hatayı almamım nedeni nedir acaba ?
<?php
$db_host = "localhost";
$db_kullaniciadi = "root";
$db_sifre = "";
$db_ismi = "boncukpilav";
(11. line burası ) mysql_connect("$db_host","$db_kullaniciadi","$db_sifre") or die ("Baglanti Basarisiz.");
mysql_select_db("$db_ismi") or die ("Database yok");
?>
Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in C:\wamp\www\10-boncuk\script\vt.php on line 11
hata alıyorum fakat kodlar çalışıyor @ işareti koyunca sorunsuz devam ediyorum. Bu hatayı almamım nedeni nedir acaba ?
<?php
$db_host = "localhost";
$db_kullaniciadi = "root";
$db_sifre = "";
$db_ismi = "boncukpilav";
(11. line burası ) mysql_connect("$db_host","$db_kullaniciadi","$db_sifre") or die ("Baglanti Basarisiz.");
mysql_select_db("$db_ismi") or die ("Database yok");
?>