<!DOCTYPE html>
<html>
<body>
<?php
echo strcmp("Hello","Hello");
echo "<br>";
echo strcmp("Hello","hELLo");
?>
</body>
</html>