I am very new to PHP. I am working on a tutorial and know I am typing the code exactly. Even so I get this parse error:
Parse error: parse error, unexpected '!' in C:\FoxServ\www\internetexplorer.php on line 2
Here is the code and any help is greatly appreciated :)
<?php
if (strpos($_SERVER['HTTP_USER_AGENT'], 'MSIE') ! = = FALSE) {
echo 'You are using Internet Explorer.<br />';
}
?>

