Quote:
Originally Posted by howarde
Is there a way to retrieve the URL in VB code similar to a php function that would be like:
PHP Code:
<?php if ($_SERVER['REQUEST_URI']=='/gallery/' ) {#Do What I Need Done;} ?>
Basically, I need to insert an ad zone, in the gallery, which in forums, I just use
vb:if condition="$GLOBALS[forumid]== foo"
But for /gallery, any suggestions??
|
If that works in php, then in a template you should be able to do:
Code:
<vb:if condition="$_SERVER['REQUEST_URI']=='/gallery/'">
{#Do What I Need Done;}
</vb:if>