<!DOCTYPE html>
<html>
<body>

<?php
$people = array("Bill", "Steve", "Mark", "David");

if (in_array("Mark", $people))
  {
  echo "Æ¥ÅäÒÑÕÒµ½";
  }
else
  {
  echo "Æ¥ÅäδÕÒµ½";
  }
?>

</body>
</html>