Verileri işlemek için PDO kullanmaya başlayabilirsin. Kullandığım örnek bir kodu paylaşayım seninle:

try{
$db->exec('SET NAMES UTF8');
$query = $db->prepare("INSERT INTO musteriler (musteri_ad, musteri_tel, musteri_mail, musteri_sifre, musteri_rol) VALUES (?, ?, ?, ?, ?)");
$insert = $query->execute(array($musteri_ad, $musteri_tel, $musteri_mail, $musteri_sifre, $musteri_rol));
if($insert){
$last_id = $db->lastInsertId();
}
}catch(Exception $e){
print $e->getMessage();
}