Файл: wap/inc/browsers.php
Строк: 39
<?
#########################################################
$count_query = "select count(*) from `count` where 1 AND `browser`
LIKE 'Opera' ;";
$total_opera = mysql_query ($count_query);
$total_opera_count = mysql_fetch_array ($total_opera);
$count_opera = $total_opera_count ['count(*)'];
##########################################################
#########################################################
$count_query = "select count(*) from `count` where 1 AND `browser`
LIKE 'msie' ;";
$total_msie = mysql_query ($count_query);
$total_msie_count = mysql_fetch_array ($total_msie);
$count_msie = $total_msie_count ['count(*)'];
##########################################################
#########################################################
$count_query = "select count(*) from `count` where 1 AND `browser`
LIKE 'netscape' ;";
$total_netscape = mysql_query ($count_query);
$total_netscape_count = mysql_fetch_array ($total_netscape);
$count_netscape = $total_netscape_count ['count(*)'];
##########################################################
#########################################################
$count_query = "select count(*) from `count` where 1 AND `browser`
LIKE 'mozilla' ;";
$total_mozilla = mysql_query ($count_query);
$total_mozilla_count = mysql_fetch_array ($total_mozilla);
$count_mozilla = $total_mozilla_count ['count(*)'];
##########################################################
?>