Follow along with the video below to see how to install our site as a web app on your home screen.
Примечание: This feature may not be available in some browsers.
Вариант функции "Топ продаж"
*** скрытое содержание ***
...ещё бы и вывод картинок прикрутить...
SELECT ..., default_picture, .... FROM PRODUCTS_TABLE
if ($row = db_fetch_row($q))
{
if ( is_null($row["default_picture"]) )
continue;
$q1 = db_query( "SELECT filename, thumbnail, enlarged from ".
PRODUCT_PICTURES." WHERE photoID=".$row["default_picture"] );
$row1 = db_fetch_row( $q1 );
if ( $row )
{
if ( file_exists( "./products_pictures/".$row1["filename"] ) )
{
$row["default_picture"] = $row1["filename"];
$row["Price"] = show_price($row["Price"]);
$result[] = $row;
}
}
}
{$bestsellers[i].Price}