• RSS
  • Facebook
  • Twitter
  • Linkedin

12 Ağustos 2014 Salı

PDO ile Veritabanı İşlemleri

PDO İLE VERİTABANINA BAĞLANMA Localhost için geçerli :   dosya adı = db.php <?php try {      $db = new PDO("mysql:host=localhost;dbname=database_ismi;charset=utf8", "root", ""); } catch ( PDOException $e ){      print $e->getMessage();  } ?> NOTLAR...