Thank you to all for help, you are nice, but it doesn´t work :( Maybe it´s problem in my code. I am begginer i am learning from google and it can be problem.
I tried insert it to page_1html but php script doesn´t work. It show this
http://testik.fotozahrada.cz/
(left side of page,)
Code what i want Insert is this:
<?php
$datamoje1=mysql_query("SELECT `Category` FROM `sys_categories` WHERE `ID` = 0 AND `Status` = 'active' AND `Type` = 'bx_photos' ORDER BY Category ASC");
echo(" <div class='kategorie_menu_div'><table cellpadding='0'>
<tr>
<td>Hledani:<br><input style='width: 100px;
background-color: #2D2D2D;
border: 1px solid #393534 !important;
color: #888;
outline: none;' type='text' id='filterField'></td>
</tr>
</table>
<table id='myTable'>
<thead> <tr>
<td>Kategorie</td>
</tr>
</thead><tbody>");
while ($datamoje=mysql_fetch_array($datamoje1))
{
$category = $datamoje['Category'];
$category_encoded = urlencode($category);
echo("<tr>");//každý záznam jeden řádek
echo("<td class='menu1'><a class='menu1text' href='modules/?r=photos/browse/category/" . $category_encoded . "'>" . $category . $dat . "</a> </td>
</tr>");
}
echo("</tbody>
</table></div><script type=\"text/javascript\">
initSortTable('myTable',Array('S'));
var filter = new DG.Filter({
filterField : $('filterField'),
filterEl : $('myTable')
});
</script>");
?>
CSS i have set.
Has somebody idea how to do it please?