Quote:
Originally Posted by AN-net
i was wondering if with conditionals i could do this:
HTML Code:
<if condition="is_browser('explorer')">
blah blah..
</if>
to use that would i have to add anything to my php file?
also is internet explorer expressed as explore in conditionals?
|
You can use this if you don't want to specify a specific version.
PHP Code:
<if condition="is_browser('ie')">Do Internet Explorer Stuff here</if>
And, no, it will not return a 0 for the version number.