 ");
echo(" | ");
// Горячие Темы");
while ($ar=mysql_fetch_row($res))
{
echo(" |
");
echo("|
$ar[1] |
");
}
}
function ShowCategories()
{
global $uid;
echo(" ");
echo(" Все |
");
echo(" |
");
$res=mysql_query("select Id,Caption from ".ct." where Parent=0 order by Position asc");
if (!mysql_num_rows($res))
return;
while ($ar=mysql_fetch_row($res))
{
echo(" ");
echo(" $ar[1] |
");
echo(" |
");
}
}
function ShowFormats()
{
global $uid;
$res=mysql_query("select Id,Caption from ".fmtt." where Id<>0");
if (mysql_num_rows($res))
{
echo(" |
");
echo("| ");
while ($ar=mysql_fetch_row($res))
echo("$ar[1]; ");
echo(" |
");
}
}
function ShowNewCardsForm()
{
echo("");
}
connect_shop_db();
?>