Computer Science, asked by bapichowdhury3996, 1 year ago

How can we get the browser properties using PHP?

Answers

Answered by prakashsatya10
0

The browser properties can be obtained by a simple PHp code.

The following code will return an array of the browser name,version and platform.

Example:-

<?php

echo $_SERVER['HTTP_USER_AGENT'] . “\n\n”;

$browser = get_browser();

print_r($browser);

?>

plz mark as brainliest

Similar questions