PDA

Shop Support News Archive - Shopbetreiber News -> Forum : xt eCommerce Templates Module SEO Support: Version 3.04sp2.1 Support: Php In Box_html Einbinden


MAD King
22.10.2006, 12:10
Hallo,


wie kann ich bitte folgenden Code in eine box_xxx.html einbinden?


<?php include('Counter/counter.php');
$chCounter_visible = 0;
$chCounter_template = <<<TEMPLATE
bisherige Besucher: {V_TOTAL_VISITORS}
TEMPLATE;
?>


Danke

TechWay
22.10.2006, 13:19
Hallo,
wenn es ein smarty-Template ist dann so:


{php}
include('Counter/counter.php');
$chCounter_visible = 0;
$chCounter_template = <<<TEMPLATE
bisherige Besucher: {V_TOTAL_VISITORS}
TEMPLATE;
{/php}


diese Zeile musst du wahrscheinlich dann auch noch anpassen (Pfad)
include('Counter/counter.php');

Gruß
Steffen

MAD King
22.10.2006, 17:26
Danke