I used this with [php] [/php] at post and not working ??
<?php
if(is_firefox()) {
$firefox = ‘<div class=”firefox”>
Hi User your Browser is Firefox ‘.get_browser_version().'</strong</div>’;
echo $firefox;
}
?>
<?php
if(is_chrome()) {
$chrome = ‘<div class=”chrome”>
Hi User your Browser is Chrome ‘.get_browser_version().'</strong</div>’;
echo $chrome;
}
?>