Below is the text i placed in the phpinclude_start template.
PHP Code:
$msie = '/msie\s([5-9])\.?[0-9]*.*(win)/i';
$opera = '/opera\s+[0-9]+/i';
if(!isset($_SERVER[HTTP_USER_AGENT]) || !preg_match($msie,$_SERVER[HTTP_USER_AGENT]) || preg_match($opera,$_SERVER[HTTP_USER_AGENT]))
{
$logooutput = "<img border=/"0/" src=/"$vboptions[bburl]/blank.gif/" style=/"border: 0; width: 270px; height: 80px; filter:
progid:DXImageTransform.Microsoft.AlphaImageLoader(src='$vboptions[bburl]/images/header/ttclogo.png', sizingMethod='scale')/" />";
}
else
{
$logooutput = "<img src=/"$vboptions[bburl]/images/header/ttclogo.png/" style=/"width: 270px; height: 80px; border: 0;/" />";
}
I then put $logooutput in my vbindex_header template and nothing happens. What should i do to fix this?