En çok beğendiğim bir ders vardı.Tayfun erbilen anlatmıştı.Normal mysql ile pdo arasındaki kod farklıklarını anlatıyordu.Hatta linkinide veriyim.

http://www.prototurk.com/video/mysql_-vs-pdo/394

Buradaki dersi incelerseniz sizin kodlamanız aşağıdaki gibi olmalı

try {
$db = new PDO("mysql:host=localhost;dbname=test;charset=utf8", "root", "123456");
} catch ( PDOException $e ){
print $e->getMessage();
}
?>
//----- Fonksiyon 3
function ornek(){
$cek = mysql_query("Select id, adres, site_adres from ayarlar");
$query = $db->query("Select id, adres, site_adres from ayarlar", PDO::FETCH_ASSOC);
if ( $query->rowCount() ){
foreach( $query as $row ){
print $row['kulanici_adi']."
";
}
}
}
?>