XF 1.1 Banner via php include?

twollert

Active member
I would like to add a dynamic banner to the header. In the past I did that with this php include code:

Code:
<?php include ('http://www.radioforen.de/adserver/images/getaudio/banner.php'); ?>

But that seems not to work with XenForo. I see xen:include in the templates. Can I use it to insert the banner.php?
 
Thanks, Jake! I found another solution for that:

Code:
<iframe src="http://www.radioforen.de/adserver/images/getaudio/banner.php" marginheight="0" marginwidth="0" frameborder="0" scrolling="no" height="90" width="728"></iframe>
 
Top Bottom