Quote:
Originally Posted by Biker_GA
You can look for specific IE versions within the script.. Something like:
PHP Code:
<?php echo ( browser_detection( 'number' ) .'<br>'. browser_detection( 'browser' ) .'<br>'. browser_detection( 'os' ) .'<br>'. browser_detection( 'os_number' ) ); ?>
Outputs (browser version, browser, os, os number): 1.5 moz nt 5.1
<?php if ( ( browser_detection( 'browser' ) == 'ie' ) && ( browser_detection( 'number' ) >= 5 ) ) { echo 'it is Internet Explorer ' . browser_detection( 'number' ); // or anything else you want to happen of course } ?>
Obviously, you don't need to check for OS version, but this should give you an idea on where to start with checking for the type of browser and browser version.
|
Like I said, I don't want to force it upon anyone - I'd rather give them the option.
Unofficial mods and addons manage to add options to the User CP. Is it not possible to do this manually?