include "fce.php";
connect();
// určení $page
if (!isset($page)):
$page=0;
endif;
// ošetřeníé invalid vstupů z URL
$page += 0;
// system variables
$tbl_wid = 342;
$tbl_space = 6;
$sql_str = "SELECT * FROM foto_rezbar WHERE kategorie=".$page." ORDER BY id";
$sql = MySQLi_Query($con, $sql_str);
// určení celkové šířky tabulky
while ($res = MySQLi_Fetch_Array($sql)):
$size = getimagesize("foto_small/".$res["id"].".jpg");
$celk_wid += $size[0]+$tbl_space;
endwhile;
// výpis ovládacích prvků
echo "";
echo '';
// WRITING IMAGES
$sql = MySQLi_Query($con, $sql_str);
while ($res = MySQLi_Fetch_Array($sql)):
$size = getimagesize("foto_small/".$res["id"].".jpg");
$size_big = getimagesize("foto_big/".$res["id"].".jpg");
echo "";
echo "";
echo " | ";
endwhile;
if (mysqli_num_rows($sql) == 0):
echo "Kategorie je prázdná. | ";
endif;
MySQLi_Close($con);
?>