My host hasnt got Browscap enabled and WONT enable it.
So im using a standalone version.
I can get it to echo the entire array with
but cant get Platform and Browser from the arrayPHP Code:
// Loads the class
require 'cap/Browscap.php';
// Creates a new Browscap object (loads or creates the cache)
$bc = new Browscap('cap/cache');
// Gets information about the current browser's user agent
$browser = $bc->getBrowser($agent);
// Output the result
echo '<pre>'; // some formatting issues ;)
print_r($current_browser);
echo '</pre>'