vampsm Posted October 29, 2009 Report Share Posted October 29, 2009 Hallo, bin gerade am basteln, wie ich bei "aktiven" Bannern, eine kleinen Schriftzug (Hinweis) auf Werbung / Anzeige, über (unterhalb, daneben...) dem Banner platzieren kann. Jedoch komme ich jetzt an meine Grenzen In welcher PHP muß so eine Anweißung stehen: banner.php, xtc_banner_exists.inc.php oder xtc_display_banner.inc.php Wo und wie kann man sowas Einbauen, hier der Anfang aus der xtc_display_banner.inc.php function xtc_display_banner($action, $identifier) { if ($action == 'dynamic') { $banners_query = xtc_db_query("select count(*) as count from " . TABLE_BANNERS . " where status = '1' and banners_group = '" . $identifier . "'"); $banners = xtc_db_fetch_array($banners_query); if ($banners['count'] > 0) { $banner = xtc_random_select("select banners_id, banners_title, banners_image, banners_html_text from " . TABLE_BANNERS . " where status = '1' and banners_group = '" . $identifier . "'"); } else { return '<b>XTC ERROR! (xtc_display_banner(' . $action . ', ' . $identifier . ') -> No banners with group \'' . $identifier . '\' found!</b>'; } } elseif ($action == 'static') { if (is_array($identifier)) { $banner = $identifier; } else { $banner_query = xtc_db_query("select banners_id, banners_title, banners_image, banners_html_text from " . TABLE_BANNERS . " where status = '1' and banners_id = '" . $identifier . "'"); if (xtc_db_num_rows($banner_query)) {[/PHP] Hat jemand eine Idee wie man das realisieren kann? DANKE an alle Link to comment Share on other sites More sharing options...
vampsm Posted November 7, 2009 Author Report Share Posted November 7, 2009 Hallo, hat keiner eine Idee? Kann mir jemand sagen welche PHP für die Banner verantwortlich ist? Wie der Ablauf ist. Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.