Quote:
Originally Posted by Dismounted
You'll need some knowledge of PHP - if you do, Googling "user agent string php" will probably reveal some code examples.
|
The reason I posted it here was to get just that information and the best way to implement it in vBulletin.
Anyone here want to really help me?
--------------- Added [DATE]1216398110[/DATE] at [TIME]1216398110[/TIME] ---------------
I do have some code now that I got online, as follows:
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
}
?>
OK, this goes in a postbit template? Which one? Where?
Will it do what I want?