Serial kartina:
Serial proc: $hostname = "localhost"; $username = "subscr5_duneadmn"; $password = "3UME8O0kuu$1"; $dbname = "subscr5_dealer"; $table= "mozdune_tmp_status"; $table_mn="mozdune_status"; $connection = mysql_connect($hostname,$username,$password) OR DIE("No connection"); mysql_select_db($dbname) or die(mysql_error()); $query = "SELECT * FROM $table"; $res = mysql_query($query) or die(mysql_error()); $numbers= mysql_num_rows($res); if ($numbers==0) { echo "no entries"; } else { while ($row=mysql_fetch_array($res)) { echo $row['serial_proc']; } } mysql_close($connection); ?>