<!DOCTYPE html>
<html>
<body>

<?php
echo strcasecmp("Hello","HELLO");
echo "<br>";
echo strcasecmp("Hello","hELLo");
?>

 
</body>
</html>