ok, for my site, i use div tags, and if the user doesnt have an updated explorer, some of the tables overlap a bit, not a huge deal, but with this script i am letting the user know of the problem. how can i get this script to only show once, and not everytime the user clicks a link..
<?
//check IE 1,2,3,4,5
$check1 = strpos($HTTP_USER_AGENT, "IE 1");
$check2 = strpos($HTTP_USER_AGENT, "IE 2");
$check3 = strpos($HTTP_USER_AGENT, "IE 3");
$check4 = strpos($HTTP_USER_AGENT, "IE 4");
$check5 = strpos($HTTP_USER_AGENT, "IE 5");
if($check1 || $check2 || $check3 || $check4 || $check5 == true){
echo("
<script language=\"VBScript\">
MsgBox \"Your Internet Explorer does not seem to be up to date,
because of this you may experience some overlapping when viewing the
site.\",48,\" HazardNet.Net\"
</script>
");
}
?>