MILCH Posted November 18, 2007 Report Share Posted November 18, 2007 ich möchte gern meinen kunden anzeigen lassen wieviele artikel er zur auswahl hat hat jemand eine idee wie man das umsetzten kann? so wie in der admin box halt nur für kunden sichtbar Link to comment Share on other sites More sharing options...
John Steed Posted November 18, 2007 Report Share Posted November 18, 2007 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 More sharing options...
MILCH Posted November 18, 2007 Author Report Share Posted November 18, 2007 ja soweit war ich schon nur wie binde ich das zB auf der index (startseite) ein? Link to comment Share on other sites More sharing options...
John Steed Posted November 19, 2007 Report Share Posted November 19, 2007 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 More sharing options...
MILCH Posted November 19, 2007 Author Report Share Posted November 19, 2007 erstmal da wo "Herzlich Willkommen" steht danke Link to comment Share on other sites More sharing options...
Numerobis Posted November 19, 2007 Report Share Posted November 19, 2007 Versuch doch mal, das in Deinen Willkommenstext einzufügen. Sofern er als .html im Contentordner steht, sollte das eigentlich funktionieren. DB und Sprachfile weiß ich jetzt nicht... Herzlich Willkommen..... Wir haben <?php ... ?> Produkte im Shop.[/PHP] Link to comment Share on other sites More sharing options...
MILCH Posted November 19, 2007 Author Report Share Posted November 19, 2007 und wenn er nicht als .html im Contentordner steht? Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.