Php ile 2 türlü veritabanına bağlantı sağlayabiliyoruz.
1) Mysqli
PHP Kod:
<?php
$baglanti = mysql_connect("localhost","root","123456") or die ();
mysql_select_db("test", $baglanti) or die ( mysql_error() );
?>
PHP Kod:
<?php
try {
$db = new PDO("mysql:host=localhost;dbname=test", "root", "123456");
} catch ( PDOException $e ){
print $e->getMessage();
}
?>