Jump to content
xt:Commerce Community Forum

Anzahl der Artikel


MILCH

Recommended Posts

Guck doch einfach, wie das in der Admin-Box (templates/DEINTEMPLATE/source/boxes/admin.php) gemacht ist:

$products_query = xtc_db_query("select count(*) as count from " . TABLE_PRODUCTS . " where products_status = '1'");

$products = xtc_db_fetch_array($products_query);[/PHP]

Danach steht die Anzahl aller aktiven Produkte in

[PHP]$products['count'][/PHP]

Link to comment
Share on other sites

ja soweit war ich schon nur wie binde ich das zB auf der index (startseite) ein?

<?
$products_query = xtc_db_query("select count(*) as count from " . TABLE_PRODUCTS . " where products_status = '1'");
$products = xtc_db_fetch_array($products_query);
echo $products['count'];
?>[/PHP]

:)

Nee, im Ernst, musst schon sagen, wo's genau hin soll - in irgendeine Box, in den Bereich mit den neuen Artikeln oder etwa da wo "Herzlich Willkommen" steht...

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
  • Create New...