ACC SHELL
<?php
$gallery = new gallery;
$gallery->select_hotels($_GET['id']);
$id_sel_hotel = $gallery->select_hotel_id($_GET['id']);
echo '<h1 class="gallery_h">Galerie</h1>';
echo '<a id="gallery_back" href="default.php?page=gallery/gallery&parent='.$_GET['parent'].'"><img src="img/Back.jpg" alt="Zpět" title="Zpět" border="0" /></a>';
echo '<form id="add_folder_form" name="form" method="post" action="default.php?page=gallery/gallery&parent='.$_GET['parent'].'">';
echo '<label>Zvolte hotel:</label> <select name="id_hotel">'."\n";
echo '<option value="0">Ziaden</option>';
for($i=0;$i<count($gallery->hotel_id);$i++){
echo '<option value="'.$gallery->hotel_id[$i].'" '.
($gallery->hotel_id[$i] == $id_sel_hotel ? 'selected="selected"' : '').'>'.$gallery->hotel_name[$i].'</option>'."\n";
}
echo '</select>'.
'<input type="hidden" name="id_kategory" value="'.$_GET['id'].'" />'.
' <input type="submit" name="button_hotel" value="ulozit" />'.
'</form>';
?>
ACC SHELL 2018