This website can use cookies to improve the user experience

This website can use cookies to improve the user experience and to provide certain services and functions to users. Cookies contain small amounts of information (such as login information and user preferences) and will be stored on your device.

Enable All Cookies Privacy Policy

PHP Code in die Templates einfügen


avatar
Pit 0
From: -
PHP Code in die Templates einfügen

Hoi Philipp (altes Haus Winking Face )

Mein Problem: Ich soll einen Banner einfügen, der in PHP geschrieben ist. Beispielcode siehe hier:  http://planads.de/einbau.php.

Am PHP Code der Storytellerscripte soll nichts geändert werden, wie könnten wir da am besten vorgehen?

Pit

Notice

This topic is archived. New comments cannot be posted and votes cannot be cast.

Responses to this topic


1 Re: PHP Code in die Templates einfügen
avatar
OP 0
From: -
PHP Code in die Templates einfügen

Super, klappt. Was so ein winziger Punkt alles bedeuten kann Winking Face
1 Re: PHP Code in die Templates einfügen
avatar
Administrator
1340
From: Vienna, Austria
PHP Code in die Templates einfügen

Tatsächlich. So sollte es funktionieren:

$banner .= "<div style='font-size:10px;width:145px;overflow:hidden;margin-top:10px;background-color:#eee;padding:3px;'><b><a href='".$regs[4][0]."'>".$regs[2][0]."</a></b><br>".$regs[6][0]."<br><a href='".$regs[4][0]."'>".$domain."</a></div>n";
1 Re: PHP Code in die Templates einfügen
avatar
OP 0
From: -
PHP Code in die Templates einfügen

Es klappt - jedoch erscheint nur ein Werbeblock statt 3 - kann es mit dem PHP-Code "$banner" zusammen hängen? Danke schonmal im Voraus.
1 Re: PHP Code in die Templates einfügen
avatar
OP 0
From: -
PHP Code in die Templates einfügen

Da wo der HP Banner ist - somit auf allen Seiten. Ich war mir nicht sicher, wie ich den PHP Code in die Templates einbinden kann
1 Re: PHP Code in die Templates einfügen
avatar
Administrator
1340
From: Vienna, Austria
PHP Code in die Templates einfügen

Wo und auf welcher Seite soll der Banner eingebaut werden?

Generell würde das so aussehen:

<?php

global $insert;

$rdffile = " http://PlanAds.de/getvalidlinkrss.php?pub=[Ihre Partner-ID]&password=[Ihr Passwort]&url= http://www.DieKompletteUrl.de/der/jeweiligen/seite.html";
$content = implode ("", file ($rdffile));
preg_match_all("|<item(.*)</item>|Uism",$content, $items, PREG_PATTERN_ORDER);
for ($i=0;$i<count($items[1]);$i++)
{
preg_match_all("|(.*)<title>(.*)</title>(.*)<link>(.*)</link>(.*)<description>(.*)</description>|Uism",$items[1][$i], $regs, PREG_PATTERN_ORDER);
$str=str_replace(" http://", "", $regs[4][0]);
$parts=explode("/", $str);
$domain=ucfirst($parts[0]);
$banner = "<div style='font-size:10px;width:145px;overflow:hidden;margin-top:10px;background-color:#eee;padding:3px;'><b><a href='".$regs[4][0]."'>".$regs[2][0]."</a></b><br>".$regs[6][0]."<br><a href='".$regs[4][0]."'>".$domain."</a></div>n";
}

$EST_TEMPLATE = <<<TEMPLATE

<!-- Template beispiel -->
$banner

...

Notice

This topic is archived. New comments cannot be posted and votes cannot be cast.