mysql to do the search and paging

hello to present a search engine for my web site. I need to make a call and paging, and then the result. Please help me. There is a need too.

My search page code

[php]<?php
//veritabanı bağlantı betiği
include “baglanti.php”;
?>

Arama Sayfası #kapsayici{ width: 355px; background: url(arama.png) no-repeat } #aramaKutusu{ width: 238px; height: 34px; overflow: hidden; display: inline-block; } #aramaKutusu input{ width: 193px; height: 19px; margin: 7px 0 0 7px; padding: 0 0 0 2px; float: left; border: none; background: #eee; font: normal 12px Arial } #aramaKutusu button{ width: 25px; height: 25px; margin: 4px 9px 0 2px; float: right; text-indent: -9999px; border: none; background: url(btn.png) no-repeat; cursor: pointer } #kategori{ background: transparent; width: 105px; margin: 6px 0 0 10px; padding: 0; float: left; font-size: 14px; border: 1px solid #eee; height: 21px; background: #eee; }
Ürün Kodu Marka Yazar
Ara
<?php if(isset($_POST['kelime'])){ //formdan gönderilen verileri alma $a_kelime=addslashes(strip_tags(trim($_POST['kelime']))); $a_kategori=$_POST['kategori']; //boş bırakılmamışsa if($a_kelime!=NULL){ //aranılmak istenilen kolona göre verilerin listelenmesi $sec = mysql_query("Select * From arama Where $a_kategori Like '%{$a_kelime}%' AND onay='Evet'"); $toplamsonuc = mysql_num_rows($sec); if($toplamsonuc > 0){ echo "Bulunan Toplam Sonuç: $toplamsonuc"; } while ($row = mysql_fetch_array($sec)){ extract($row); echo "
 Marka: $marka Ürün Kodu: $urun_kodu Kayıt No: $id
   
 Ürünü İncele

"; } }else{ echo 'Lütfen arama yapmak istediğiniz kelimeyi giriniz.'; } } mysql_close(); ?>[/php]
Sponsor our Newsletter | Privacy Policy | Terms of Service