Sen sadece arama demişsin.
Eğer konularıda;
Alıntı
site.com/seo-url-nasil-yapilir.html
site.com/icerik.php?id=seo-url-nasil-yapilir
yapmak istiyorsan. Mantık şu;

Eklerken;
<?php
function SeoLink($text){
    $tr = array('ş','Ş','ı','İ','ğ','Ğ','ü','Ü','ö','Ö','Ç','ç');
    $eng = array('s','S','i','I','g','G','u','U','o','O','C','c');
    $text = str_replace($tr,$eng,$text);
    $text = eregi_replace('[^0-9A-Za-z]',"-",$text);
    $text = preg_replace("@--*@","-",$text);
    return strtolower($text);
}
mysql_query("Insert Into icerik_tablom (seo_id, isim, aciklama, kategori) Values ('".SeoLink($isim)."', '$isim', '$aciklama', '$kategori')");
?>
Veriyi çağırırken;
<?php
//icerik.php?id=seo-url-nasil-yapilir
$seo_id = $_GET[id];
mysql_query("Select * From icerik_tablom where seo_id = '$seo_id'");
?>
Tek farkı ID sayı olmayacak ID kelime olacak.