With the following code, the First echo outputs ok, but he scond one does not - any suggestions ?
Thanks.
<?
if ($place == "head")
{
include("PHPClientSniffer.php3");
$is = new sniffer;
if ($is->NAME == "IE" && $is->VERSION >= "4" && $place == "head")
{
echo " this one prints ";
if ($is->NAME == "IE" && $is->VERSION >= "4" && $place == "bod")
{
echo " This one Dont ";
}
}
}
?>