Follow along with the video below to see how to install our site as a web app on your home screen.
Бележка: This feature may not be available in some browsers.
$query="SELECT id from table";
$result=mysql_query("SELECT id from table";
$broi_zapisi=mysql_num_rows($result);
$query = "SELECT COUNT(id) AS numrows FROM table";
$result = mysql_query($query) ;
$row = mysql_fetch_array($result, MYSQL_ASSOC);
$broi_zapisi = $row['numrows'];