Quote:
Originally Posted by brfrankl
Ok, I have a customer that wants to adversite by providing me a link to a php file. This php file then automatically randomizes the banner he sends for his advertisement. Problem is I can't seem to find the right syntax to get this mod to pull the banner.
The link to the banner.php is this:
http://iceteks.com/misc/adserver/uocoders.php
If you load that directly in your browser, and reload you will see it gives you one of 2 banners..
I have tried all of the following in the adcode section, but none give the correct result:
Code:
<img src="http://iceteks.com/misc/adserver/uocoders.php">
<?php
include 'http://iceteks.com/misc/adserver/uocoders.php';
?>
http://iceteks.com/misc/adserver/uocoders.php
So, anyone know how to get this to work??
|
This code is what's required to use that particular php script:
Code:
<?php
include 'http://iceteks.com/misc/adserver/uocoders.php';
?>
However, I don't believe that kind of inclusion is rendered by the PHP Parser, so it appears blank. In fact, a search on "php include" dug up
this tidbit from RedTyger:
Quote:
Originally Posted by RedTyger
PHP cannot be used in templates.
|