I want to put banner ads in my vbulletin pages, I use CentralAD for the rest of my site and I do a simple SSI call on my .shtml pages:
for example:
<!--#include virtual="/cgi-bin/ssirand.cgi?REGION=LaMusica_Main" -->
I read the PHP docs and the closest thing to that SSI in PHP is the virtual() call.
However when I try to do that call inside the header section of the sytle (in the cell of the table I need it to appear in) It just dislpays the call in clear text, doesnt get parsed. here is what I'm using:
virtual("/opt/apache/cgi-bin/ssirand.cgi?REGION=LaMusica_Main");
When I put that code in the TO BE PARSED section of the template it works, but it appears on the top left hand side of the site, definatelly not where I need it to be. Is there a way to be able to include this code in the header section of the style so it shows up on all my vbulletin pages where I need it to show?
for example:
<!--#include virtual="/cgi-bin/ssirand.cgi?REGION=LaMusica_Main" -->
I read the PHP docs and the closest thing to that SSI in PHP is the virtual() call.
However when I try to do that call inside the header section of the sytle (in the cell of the table I need it to appear in) It just dislpays the call in clear text, doesnt get parsed. here is what I'm using:
virtual("/opt/apache/cgi-bin/ssirand.cgi?REGION=LaMusica_Main");
When I put that code in the TO BE PARSED section of the template it works, but it appears on the top left hand side of the site, definatelly not where I need it to be. Is there a way to be able to include this code in the header section of the style so it shows up on all my vbulletin pages where I need it to show?
Comment