hi,
I'm find count from isletme table and showing to button.
before display events is no problem it's regular working.
global $conn;
$sorgu=("select count(u_tc_kimlik) from isletme");
$rs = db_query($sorgu,$conn);
$data = db_fetch_numarray($rs);
$sayac=$data[0];
echo "<input type=button class=button value=\" Toplam Kayıt Sayısı=$sayac\" \">";
My problem is,
if user is searching, how to I want count search values results?
thnx.